source: code/trunk/templates/index.html@ 13

Last change on this file since 13 was 12, checked in by dev, 4 years ago

Print a report page when uploading files from a form

File size: 586 bytes
Line 
1<!DOCTYPE HTML>
2<html>
3<head>
4 <meta charset="utf-8">
5 <meta name="author" content="z3bra">
6 <meta name="viewport" content="width=device-width">
7 <title>Partage</title>
8</head>
9<body>
10 <h1>Partage</h1>
11 <p>
12 Use the box below to upload and share files. File size is
13 limited to {{.Maxsize}}.
14 </p>
15 <form enctype="multipart/form-data" method="post">
16 <label for="uck">Select file(s) to share</label>
17 <input id="uck" name="uck" type="file" multiple/>
18 <input id="output" name="output" type="hidden" value='html' />
19 <input type="submit" value="Upload!"/>
20 </form>
21</body>
22</html>
Note: See TracBrowser for help on using the repository browser.