Files
Kontrollverlust/templates/upload.html
T

23 lines
643 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My new Site!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Upload new File</h1>
<span>{{ state }}</span>
<form method="post" enctype="multipart/form-data">
<input type=file name=file>
<input type=submit value=Upload>
</form>
{% for id in imagedata %}
{{ id }}
{% endfor %}
</body>
</html>