summaryrefslogtreecommitdiff
path: root/src/index.html
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-12-15 00:12:19 -0800
committerElizabeth Hunt <me@liz.coffee>2025-12-15 00:12:19 -0800
commit4c3b19b78230873ab067d5235124b1587543aa3e (patch)
treebba6e52fc739ff7e266814b16d9e257bbdbf00ab /src/index.html
parentbb346387d4b279189fc106d37369cc1d73c4ca3d (diff)
downloadadelie-4c3b19b78230873ab067d5235124b1587543aa3e.tar.gz
adelie-4c3b19b78230873ab067d5235124b1587543aa3e.zip
Add file input
Diffstat (limited to 'src/index.html')
-rw-r--r--src/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html
index 7af4350..5deda56 100644
--- a/src/index.html
+++ b/src/index.html
@@ -213,6 +213,22 @@
</div>
</fieldset>
+ <div class="form-group">
+ <label for="file-single">Choose File</label>
+ <input type="file" id="file-single" />
+ <label for="file-single" class="file-input-button">
+ Browse Files
+ </label>
+ </div>
+
+ <div class="form-group">
+ <label for="file-multiple">Choose Files (Multiple)</label>
+ <input type="file" id="file-multiple" multiple />
+ <label for="file-multiple" class="file-input-button">
+ Browse Multiple Files
+ </label>
+ </div>
+
<div class="button-row mt-md">
<button type="submit" class="primary">Submit</button>
<button type="reset" class="secondary">Reset</button>