-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 1004 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="form">
<form action="/upload" method="post">
<div class="file-upload">
<span>Click To Upload Your File</span>
<input type="file" id="fileupload" name="file" onchange="updateLabel(this)">
</div>
<div class="configs">
<div class="config" id="onetime" name="onetime" enabled="off" onclick="configtoggle('onetimeuse')">
<span>One Time Use</span>
</div>
</div>
<div class="upload-button">
<button type="submit" id="upload" name="upload">Upload</button>
</div>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>