summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-03-19 01:48:41 +0500
committerilotterytea <iltsu@alright.party>2025-03-19 01:48:41 +0500
commit66a0a296b6608c30b14d1b8ffa7fa709e806c1ff (patch)
treea12f19448239157a0761b119c32871a9c094f4a1 /public
parentf625a667c8dbff9e469a3820b14989fa45d42a4b (diff)
fix: show upload button
Diffstat (limited to 'public')
-rw-r--r--public/index.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php
index 739b75f..5d3668e 100644
--- a/public/index.php
+++ b/public/index.php
@@ -57,6 +57,8 @@ $accepted_mime_types = implode(', ', $accepted_mime_types);
});
const formUploadWrapper = document.getElementById('form-upload-wrapper');
+ formUploadWrapper.style.display = 'block';
+
const formSubmitButton = document.querySelector('#form-upload button[type=submit]');
const formFile = document.getElementById('form-file');