-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (79 loc) · 3.67 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang=“en”>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="stylesheet" href="./assets/css/dark-map.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ=="
crossorigin=""/>
<title>Bar Hopper</title>
</head>
<body>
<div id="myModal" class="modal">
<div class="modal-background"></div>
<div class="modal-content">
<div class="box">
<h3>Input Error</h3>
<p>Please try again</p>
</div>
</div>
</div>
<header class="header has-background-black">
<nav class="level">
<p class="level-item has-text-centered about-link-lg">
<a class="link is-info logo-text-sm" href="https://github.com/DA-Mike/Bar-Hopper">About</a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info logo-text" onClick="window.location.reload()">BarHopper</a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info logo-text-sm about-link-sm" href="https://github.com/DA-Mike/Bar-Hopper">About</a>
<a class="link is-info logo-text-sm" href="mailto:[email protected]">Contact</a>
</p>
</nav>
</header>
<div class="form input-container">
<div class="box">
<div class="h2-title has-text-centered"><h2>Get Your Bar Hopping Route Here!</h2></div>
<div class="field input-fields">
<input class="input input-field" id='address' type="textarea" placeholder="Address">
</div>
<div class="field input-fields">
<input class="input input-field" id='barnumber' type="textarea" placeholder="Number of Bars">
</div>
<div class="field input-fields">
<input class="input input-field" id='distance' type="textarea" placeholder="Maximum Distance (miles)">
</div>
<div class="button-container">
<button class="button" id="button"><a id="search" href="#">Search</a></button>
</div>
</div>
</div>
<div class="startpoints-container">
<div>
<div class="tile is-parent">
<div class="tile is-child sp-tile">
<h2 class="select-sp title">Select Your Starting Point</h2>
<div class="content sp-content"></div>
</div>
</div>
</div>
</div>
<div class="results-container box">
<h2 class="route-info title">Here's Your Route!</h2>
<div class="results"></div>
<div class="map" id='map'></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script>
<script src="./assets/js/script.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ=="
crossorigin=""></script>
</body>
</html>