18 lines
485 B
Handlebars
18 lines
485 B
Handlebars
<form method='post' action='/junk-drawer/upload' enctype='multipart/form-data'>
|
|
<div>
|
|
<label for='files'>Choose files to upload</label>
|
|
<input type='file' id='files' name='files' multiple />
|
|
</div>
|
|
<div style='display:flex; flex-direction:column;'>
|
|
<label for='description'>Description</label>
|
|
<textarea
|
|
type='text'
|
|
id='description'
|
|
name='description'
|
|
rows='4'
|
|
></textarea>
|
|
</div>
|
|
<div>
|
|
<button>Submit</button>
|
|
</div>
|
|
</form> |