Files
ReSendit/templates/upload.html
T
2026-08-31 00:10:44 +02:00

25 lines
604 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Upload</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WH82TZ9BQ6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WH82TZ9BQ6');
</script>
</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>