mannaggianastri/templates/upload.html

21 lines
412 B
HTML
Raw Normal View History

2024-06-14 17:39:50 +02:00
<html>
<head>
<title>{{ title }}</title>
</head>
2024-06-14 19:17:23 +02:00
<img src="static/ZXSpectrum+2-grey.jpg" alt="logo" style="align:center" />
2024-06-14 17:39:50 +02:00
2024-06-14 19:17:23 +02:00
<body>
<div style="margin: 0 auto; margin-top: 30%; width:300px">
<form
action="/upload"
method="POST"
enctype="multipart/form-data"
>
2024-06-14 17:39:50 +02:00
<input type="file" name="file" />
<button type="submit">Upload</button>
</form>
2024-06-14 19:17:23 +02:00
</div>
</body>
</p>
2024-06-14 17:39:50 +02:00
</html>