mannaggianastri/templates/upload.html
2024-06-14 19:17:30 +02:00

21 lines
412 B
HTML

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