1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-05 21:06:24 -07:00
gochan/html/upload.html

15 lines
No EOL
329 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Upload file</title>
</head>
<body>
<h1>Upload file</h1>
<form action="/post" method="POST" id="uploadform" enctype="multipart/form-data">
<input type="file" id="file" multiple="false" name="file">
<input type="submit" id="filesubmit" value="Upload">
</form>
</body>
</html>