Add file upload

This commit is contained in:
2023-12-11 23:05:15 -07:00
parent 6b2fd89ab2
commit fbbfae4ab2
8 changed files with 149 additions and 1 deletions

9
views/file/upload.hbs Normal file
View File

@@ -0,0 +1,9 @@
<form method='post' enctype='multipart/form-data'>
<div>
<label for='file'>Choose file to upload</label>
<input type='file' id='file' name='file' multiple />
</div>
<div>
<button>Submit</button>
</div>
</form>