19 lines
278 B
Text
19 lines
278 B
Text
package web
|
|
|
|
|
|
templ Index() {
|
|
@Base("Scanfile") {
|
|
|
|
<div id="uploadForm">
|
|
<form id='form' hx-encoding='multipart/form-data' hx-post='/upload'>
|
|
<input type='file' name='file'>
|
|
<button>
|
|
Upload
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
}
|
|
}
|
|
|