summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--template/browse_head.html1
-rw-r--r--template/upload_head.html10
2 files changed, 9 insertions, 2 deletions
diff --git a/template/browse_head.html b/template/browse_head.html
index cfc1081..972ed51 100644
--- a/template/browse_head.html
+++ b/template/browse_head.html
@@ -1,5 +1,6 @@
<h1><i class="fa-regular fa-folder-open"></i> Browsing</h1>
<a href="@@upload_url@@">Upload here</a>
+<hr />
<table id="file-list">
<thead>
<tr>
diff --git a/template/upload_head.html b/template/upload_head.html
index 542bc78..e46667e 100644
--- a/template/upload_head.html
+++ b/template/upload_head.html
@@ -1,11 +1,17 @@
<h1><i class="fa-regular fa-folder-open"></i> Uploading</h1>
-<p>to <pre>@@path@@</pre></p>
+<p>to</p>
+<pre>@@path@@</pre>
+<hr />
+<div>
<form action="@@submit_url@@" method="post" enctype="multipart/form-data">
<div>
- <label for="file">File(s):</label>
+ <label for="file">Select files:</label>
+ </div>
+ <div>
<input type="file" name="file" id="file" multiple />
</div>
<div>
<input type="submit" value="Upload" />
</div>
</form>
+</div>