-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebapp.html
More file actions
25 lines (25 loc) · 849 Bytes
/
webapp.html
File metadata and controls
25 lines (25 loc) · 849 Bytes
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
<!--
webapp.html
Simple client application for storing uploaded documents
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Upload documents</title>
</head>
<body>
<!-- Import accompanying Javascript file -->
<script type="text/javascript" src="webapp.js"></script>
<!-- File picker and upload button -->
<h2>Select file to upload</h2>
<form id="uploadform" enctype=multipart/form-data>
<!-- Encourage user to select XML files -->
<input id="upload" type="file" name="uploadedfile" accept=".xml"><br>
<input type="button" name="uploadbutton" value="Upload file" onclick="upload_file()" />
</form>
<!-- Display result of upload -->
<h2>Last upload result:</h2>
<p id="result"></p>
</body>
</html>