drop.chapril.org-firefoxsend/public/index.html

19 lines
359 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2017-05-30 18:24:16 +02:00
<head>
2017-06-01 22:14:14 +02:00
<title>Firefox Fileshare</title>
<script src="file.js"></script>
<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-06-01 22:14:14 +02:00
2017-05-30 18:24:16 +02:00
</body>
</html>