go-project-template/httpserver/templates/importer-upload.html
2024-05-05 15:10:32 -07:00

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 }}