forked from guevaraia/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dropzone_socials.html
39 lines (34 loc) · 967 Bytes
/
dropzone_socials.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
File Dropzone
</title>
<!-- work sans -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<form class="dropzone-box">
<h2>Upload and attach files</h2>
<p>Click to upload or drag and drop</p>
<div class="dropzone-area">
<div class="file-upload-icon">
<!-- svg -->
</div>
<input type="file" required id="upload-file" name="uploaded-file">
<p class="file-info">No Files Selected</p>
</div>
<div class="dropzone-actions">
<button type="reset">
Cancel
</button>
<button id="submit-button" type="submit">
Save
</button>
</div>
</form>
<script src="script.js"></script>
</body>
</html>