Files
WingetRepoServer/html/uploadfile.html
2024-06-16 16:13:19 +03:00

14 lines
375 B
HTML

{{define "body"}}
<div class="container">
<h1>Upload a File</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<div class="upload-btn-wrapper">
<button class="btn">Upload a file</button>
<input type="file" name="myFile" />
</div>
<input type="submit" value="Upload" />
</form>
</div>
{{end}}