diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2024-10-23 08:46:31 +0200 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2024-10-23 08:46:31 +0200 |
commit | 86ba3c3565208414ddad81c088d2db646fd2d4c8 (patch) | |
tree | b19d216f561b7eca01b5e3cf12f1ffc7e7dfebc4 | |
parent | b2520eaf4b98fe913bf67f4de9e66c2dc5991516 (diff) |
upload: minor ui changes
-rw-r--r-- | template/browse_head.html | 1 | ||||
-rw-r--r-- | template/upload_head.html | 10 |
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> |