Files
marisa/templates/index.html
dev 494b05c703 Print a report page when uploading files from a form
git-svn-id: file:///srv/svn/repo/marisa/trunk@12 d6811dac-2434-b64a-9ddc-f563ab233461
2021-10-15 17:23:50 +00:00

23 lines
586 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="z3bra">
<meta name="viewport" content="width=device-width">
<title>Partage</title>
</head>
<body>
<h1>Partage</h1>
<p>
Use the box below to upload and share files. File size is
limited to {{.Maxsize}}.
</p>
<form enctype="multipart/form-data" method="post">
<label for="uck">Select file(s) to share</label>
<input id="uck" name="uck" type="file" multiple/>
<input id="output" name="output" type="hidden" value='html' />
<input type="submit" value="Upload!"/>
</form>
</body>
</html>