-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 928 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HTML5 file uploader</title>
<meta name="description" content="HTML5 file uploader with the File Api and Bootstrap 3. This javascript will upload each file individual after selecting or dropping them." />
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="js/upload.js"></script>
<script>
window.onload = function() {
el = document.getElementById('InputFilename')
FileUploader = new FileUploader(el);
FileUploader.init();
}
</script>
</head>
<body>
<h1>Upload multiple images</h1>
<p>Select multiple images at once and upload them one by one.</p>
<form method="post" enctype="multipart/form-data" target="upload.php">
<input id="InputFilename" multiple="multiple" type="file" name="filename[]" />
</form>
<div id="queue"></div>
</body>
</html>