uploader/index.html

18 lines
400 B
HTML
Raw Normal View History

2024-04-30 10:53:18 +02:00
<html>
<head>
<link rel="stylesheet" type="" href="./style.css">
<script src="https://unpkg.com/htmx.org@1.9.4/dist/htmx.min.js"></script>
</head>
<body>
<p><b>Test</b></p>
2024-04-30 11:25:36 +02:00
<form id='form' hx-encoding='multipart/form-data' hx-post='/api/upload'>
<input type="file" name="file" value="">
<button>
Upload
</button>
2024-04-30 10:53:18 +02:00
</form>
</form>
</body>
</html>