mirror of
https://github.com/ilri/csv-metadata-quality-web.git
synced 2024-11-13 02:17:08 +01:00
Alan Orth
b11296cb9c
This is just to see how it works on in Flask and Google App Engine, later I'll do a proper layout.
15 lines
381 B
HTML
15 lines
381 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>CSV Metadata Quality Web</title>
|
|
<link href="/static/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>
|