csv-metadata-quality-web/templates/index.html
Alan Orth 5086ea2376
templates/index.html: Use url_for to get CSS
This is apparently the way you do it in Flask.
2021-03-11 17:55:19 +02:00

15 lines
409 B
HTML

<!doctype html>
<html>
<head>
<title>CSV Metadata Quality Web</title>
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
</head>
<body>
<h1>File Upload</h1>
<form method="POST" action="" enctype="multipart/form-data">
<p><input type="file" name="file" accept=".csv"></p>
<p><input type="submit" value="Submit"></p>
</form>
</body>
</html>