diff options
author | Blaster4385 <venkatesh@tablaster.dev> | 2024-07-25 21:00:24 +0530 |
---|---|---|
committer | Blaster4385 <venkatesh@tablaster.dev> | 2024-07-25 21:42:47 +0530 |
commit | d7d69f6d2fe6dad10057a6d45fbf0b0d91ed9355 (patch) | |
tree | a045468c34dcb3a2b92e6a6abb761592a56d8b81 /client/index.html | |
parent | 330f38289a0c83b60a6ab4a310e6bee24e2fe2a5 (diff) |
feat: add progress bar while uploading
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/index.html b/client/index.html index 82614e9..4cec1db 100644 --- a/client/index.html +++ b/client/index.html @@ -19,6 +19,9 @@ <p class="upload__input__overlay__text">Choose a file or drag it here</p> </div> <input type="file" class="upload__input" name="file"> + <div class="upload__progress" id="upload__progress" style="display: none;"> + <div class="upload__progress__fill" id="progress__fill"></div> + </div> <button type="submit" class="upload__button" id="upload__btn">Upload</button> </div> </form> |