mirror of
https://github.com/ilri/csv-metadata-quality-web.git
synced 2024-11-13 02:17:08 +01:00
Alan Orth
81b5206e97
Code taken from the following blog posts: - https://pythonbasics.org/flask-upload-file - https://blog.miguelgrinberg.com/post/handling-file-uploads-with-flask
14 lines
324 B
HTML
14 lines
324 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>CSV Metadata Quality Web</title>
|
|
</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>
|