separated file into upload and download files, changed single quotes to double quotes, added progress indicator
This commit is contained in:
parent
aad54b34b9
commit
c25c97fbaa
6 changed files with 212 additions and 177 deletions
|
@ -2,17 +2,16 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Firefox Fileshare</title>
|
||||
<script src="file.js"></script>
|
||||
<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>
|
||||
|
||||
|
||||
<form method="post" action="upload" enctype="multipart/form-data">
|
||||
<input type="file" onchange="onChange(event)" name="fileUploaded" />
|
||||
</form>
|
||||
|
||||
<p id="downloadProgress"></p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue