forked from foozzi/BigUpload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
34 lines (34 loc) · 1 KB
/
example.html
File metadata and controls
34 lines (34 loc) · 1 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="js/bigUpload.js"></script>
<script>
bigUpload = new bigUpload();
function upload() {
bigUpload.fire();
}
function abort() {
bigUpload.abortFileUpload();
}
</script>
</head>
<body>
<div class="bigUpload">
<div class="bigUploadContainer">
<h1>BigUpload</h1>
<form action="inc/bigUpload.php?action=post-unsupported" method="post" enctype="multipart/form-data" id="bigUploadForm">
<input type="file" id="bigUploadFile" name="bigUploadFile" />
<input type="button" class="bigUploadButton" value="Start Upload" id="bigUploadSubmit" onclick="upload()" />
<input type="button" class="bigUploadButton bigUploadAbort" value="Cancel" onclick="abort()" />
</form>
<div id="bigUploadProgressBarContainer">
<div id="bigUploadProgressBarFilled">
</div>
</div>
<div id="bigUploadTimeRemaining"></div>
<div id="bigUploadResponse"></div>
</div>
</div>
</body>
</html>