12 lines
242 B
HTML
12 lines
242 B
HTML
{{template "base.html" . }}
|
|
|
|
{{ define "body" }}
|
|
<form method="post" enctype="multipart/form-data">
|
|
<div>
|
|
<input type="file" name="files" multiple />
|
|
</div>
|
|
<div>
|
|
<button>Submit</button>
|
|
</div>
|
|
</form>
|
|
{{ end }}
|