scanfile/server/web/index.templ
2025-05-26 08:33:27 +02:00

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