diff options
author | Aditish51 <[email protected]> | 2024-07-22 22:54:12 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2024-07-25 17:15:39 +0530 |
commit | 26cf8aa1cbb894ce91e866da1227ea42a92fdfab (patch) | |
tree | c4fbb66c741bed69ebaf6102aea0a5359602ab4a /client/upload.html | |
parent | 4016aa58005f968cca5b216e4188394b4d350095 (diff) |
feat: added initial frontend
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> |