diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2024-09-06 12:21:06 +0200 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2024-09-06 12:22:20 +0200 |
commit | d7edafe299d44a0bec9d29e2b3a4ca853ffa1a80 (patch) | |
tree | 9f4de85662fbfd997bf5ee96671a2f776f2c53a6 /template/upload_head.html | |
parent | 35a145fd161fb4d4f19aa9820b50438695b94414 (diff) |
upload: add form
Diffstat (limited to 'template/upload_head.html')
-rw-r--r-- | template/upload_head.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/template/upload_head.html b/template/upload_head.html new file mode 100644 index 0000000..fbdb209 --- /dev/null +++ b/template/upload_head.html @@ -0,0 +1,11 @@ +<h1><i class="fa-regular fa-folder-open"></i> Uploading</h1> +<p>to <pre>@@path@@</pre></p> +<form action="@@submit_url@@" method="post"> + <div> + <label for="file">File(s):</label> + <input type="file" name="file" id="file" multiple /> + </div> + <div> + <input type="submit" value="Upload" /> + </div> +</form> |