initial commit

This commit is contained in:
fordprefect
2020-12-30 15:34:50 +01:00
commit 767c35924d
3 changed files with 86 additions and 0 deletions

20
index.html Normal file
View File

@@ -0,0 +1,20 @@
<html>
<head><title>Upload</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body class=box>
<div class=head>
<h3>Datei-Upload</h3>
Dateien können nur einzeln hochgeladen werden, es bietet sich also an die Dateien in ein Archiv (zip, tar o.&auml;.) zu verpacken.
Uploads bitte per Mail an mich ankündigen, sonst kriege ich es evtl nicht mit.<br>
Danke!
<br>
<form action="up.run" method="post" enctype="multipart/form-data">
Datei auswählen: <input type="file" name="myfile" /> <br />
<!--input type="hidden" name="MAX_FILE_SIZE" value="5000" /-->
<input type="submit" name="submit" value="Submit" />
</form>
</div>
</body></html>