csv-metadata-quality-web/templates/index.html

18 lines
575 B
HTML
Raw Normal View History

<!doctype html>
2021-03-11 16:59:51 +01:00
<html lang="en">
<head>
2021-03-11 16:59:51 +01:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSV Metadata Quality Tool</title>
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
</head>
<body>
2021-03-11 16:59:51 +01:00
<h1>CSV Metadata Quality Tool</h1>
<p>Select a CSV file to process.</p>
<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>