-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<link rel="stylesheet" type="text/css" href="index.css">
<title>Distance Calculator</title>
</head>
<body>
<div id="text_zone">
<h2>Distance Calculator</h2>
<p id="help_text">Please input data file</p>
</div>
<div id="data_zone">
<form id="event_form">
<input id="coords" type=text placeholder="Coordinates">
<input type="submit">
</form>
<br>
<form id="search_form">
<input id="search" type=text placeholder="Enter a name">
<input type="submit" value="Search">
<button id="clear_search">Clear</button>
</form>
<div id="search_list"></div>
<!-- <h3 id="text"></h3> -->
<ol id="list"></ol>
</div>
<div id="drop_zone">
<p>Drop CSV file here</p>
</div>
<div id="map_container">
</div>
<script src="./renderer.js"></script>
</body>
</html>