diff options
Diffstat (limited to 'client/upload.html')
-rw-r--r-- | client/upload.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/client/upload.html b/client/upload.html new file mode 100644 index 0000000..56b2f12 --- /dev/null +++ b/client/upload.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>File Upload</title> + <link rel="stylesheet" href="upload.css"> +<body> + <div id="navbar"></div> + <h2 id="uploader-title">FILE SHARE</h2> + <div id="main"> + + <div class="file-uploader"> + <div class="uploader-header"> + + <h4 id="file-completed-status"></h4> + </div> + <ul class="file-list"></ul> + <div class="file-upload-box"> + <h2 class="box-title"> + + </h2> + <div class="uploadsec"> + <form id="uploadForm"> + <input type="file" id="fileInput" name="file"> + <button type="submit" id="uploadbtn" >Upload</button> + </form> + </div> + <div class="info1" id="info1h"></div> + <div class="info2" id="info2h"></div> + +</div> +</div> + </div> + + <script src="upload.js"></script> +</body> +</html> |