18 lines
317 B
HTML
18 lines
317 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Firefox Fileshare</title>
|
|
<script src="upload.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<form method="post" action="upload" enctype="multipart/form-data">
|
|
<input type="file" onchange="onChange(event)" name="fileUploaded" />
|
|
</form>
|
|
|
|
<p id="downloadProgress"></p>
|
|
|
|
</body>
|
|
</html>
|