This commit is contained in:
2021-05-10 23:29:11 +02:00
parent 9d0dd96549
commit 3aec2503ce
5 changed files with 228 additions and 0 deletions

16
templates/index.html Normal file
View File

@ -0,0 +1,16 @@
<!doctype html>
<head>
<title>Upload new File</title>
<style>
h1 {text-align: center; color: blanchedalmond;}
p {text-align: center; color: blanchedalmond;}
div {text-align: center;}
</style>
</head>
<body style="background-color:rgb(24, 24, 24);">
<h1>File Upload</h1>
<form method=post enctype=multipart/form-data>
<p><input type=file name=file> <input type=submit value=Upload></p>
</form>
</body>
</html>