Files
ReSendit/internal/templates/upload.html
2026-03-20 12:33:37 +01:00

15 lines
275 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Upload</title>
</head>
<body>
<h1>Upload File</h1>
<form action="/api/files/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" />
<button type="submit">Upload</button>
</form>
</body>
</html>