-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 684 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<title> Super Geocoder </title>
<head>
<link href="../static/main.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Super Geocoder</h1>
<h3>Please upload your csv file. the values containing addressess should be in a column named <em>addresses</em> or <em>address</em></h3>
<form action="{{url_for('success_table')}}" method="POST" enctype="multipart/form-data">
<input type="file" accept=".csv" name="file" />
<button type="submit"> Submit </button>
</form>
<div class="output">
{{text|safe}}
{% include btn ignore missing %}
</div>
<div>
</body>
</html>