-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (24 loc) · 1016 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
<!DOCTYPE html >
<html>
<head>
<title>File upload</title>
<script type="text/javascript" src="/upload/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="/upload/jquery.form.js"></script>
<script type="text/javascript" src="/upload/upload.js"></script>
</head>
<body>
<h1>File upload</h1>
<form class="file" action="/" method="POST" enctype="multipart/form-data">
<input type="file" name="upload" />
<input type="submit" />
</form>
<div class="status">Progress: <span id="upload_progress">Not started</span></div>
<div id="path" style="display:none">Saved to: <a id="file_link"></a></div>
<form class="description" method="POST" action="/description">
<input type="hidden" name="path" id="path_field" />
<label for="description">Description</label>
<textarea name="description" id="description"></textarea>
<input type="submit" value="Save" id="submit_button" disabled="disabled" />
</form>
</body>
</html>