1
0
mirror of https://github.com/nokonoko/Uguu.git synced 2024-01-06 13:35:15 +00:00
uguu/templates/partials/upload_form.ejs
Go Johansson (neku) 2057341d8f refactoring
* Ko-Fi donation button added.
* Templating now uses ejs instead of swig.
* clean-css/uglify-js replaced with minify-all.
* Minor PHP changes.
* Preparations for major refactor.
2022-07-16 08:24:58 +02:00

6 lines
372 B
Plaintext

<form id="upload-form" enctype="multipart/form-data" method="post" action="upload.php?output=html">
<button id="upload-btn" class="btn" type="button">Drop or paste file(s)</button>
<input type="file" id="upload-input" name="files[]" multiple data-max-size="<%= max_upload_size %>MiB">
<input type="submit" value="Submit">
</form>
<ul id="upload-filelist"></ul>