-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
51 lines (37 loc) · 826 Bytes
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
HTML5 image upload with preview and progress bar
</title>
<link href="style.css" rel="stylesheet">
<script type="text/javascript" src="upload.js"></script>
</head>
<body>
<form id="upload" action="./upload.php" method="POST" enctype="multipart/form-data">
<h3>
You can:
</h3>
<ul>
<li>
Drag & drop files on selected area
</li>
<li>
Paste images from clipboard
</li>
<li>
Select files
<input type="file" id="fileselect" name="fileselect[]" multiple="multiple"/>
</li>
</ul>
<div id="dropzone">
<br><br>
Drop files here
</div>
<input type="hidden" name="formIdent" value=""/>
</form>
<div id="previews"></div>
</body>
</html>