Skip to content

Commit

Permalink
fixes for accessibility issues
Browse files Browse the repository at this point in the history
  • Loading branch information
thetif committed Sep 17, 2024
1 parent 8e405a3 commit d0d97ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions upload-server/internal/ui/upload.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
/>
</div>
<div class="input-container">
<div class="label">
<label for="files">
Metadata JSON Object
<div class="input-tip">
<b>Note:</b> File name will be inferred from each file
</div>
</div>
</label>
<div class="file-container">
<button onclick="files.click()" name="Browse files to upload">Browse Files</button>
<button type="button" onclick="files.click()" name="Browse files to upload" id="browse-files">Browse Files</button>
<input type="file" id="files" />
</div>
</div>
Expand All @@ -81,8 +81,8 @@
</div>
</div>
<div class="pause-resume-upload-container">
<button id="pause-upload-button" class="hidden">Pause</button>
<button id="resume-upload-button" class="hidden">Resume</button>
<button type="button" id="pause-upload-button" class="hidden">Pause</button>
<button type="button" id="resume-upload-button" class="hidden">Resume</button>
</div>
</div>
</div>
Expand Down

0 comments on commit d0d97ab

Please sign in to comment.