go-project-template/httpserver/templates/importer-upload.html

13 lines
242 B
HTML
Raw Normal View History

2024-05-05 22:10:32 +00:00
{{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 }}