scanfile/server/web/index.templ
2025-05-27 15:00:19 +02:00

18 lines
292 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 class="button">
Upload
</button>
</form>
</div>
}
}