1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 16:41:32 +02:00
send/public/index.html

19 lines
320 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2017-05-30 18:24:16 +02:00
<head>
<title>Firefox Fileshare</title>
<script src="upload.js"></script>
2017-05-30 18:24:16 +02:00
</head>
<body>
<form method="post" action="upload" enctype="multipart/form-data">
<input type="file" onchange="onChange(event)" name="fileUploaded" />
</form>
2017-05-30 18:24:16 +02:00
<ul id="uploaded_files">
</ul>
2017-05-30 18:24:16 +02:00
</body>
</html>