-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (27 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>RoutER</title>
<link rel="icon" type="image/x-icon" href="../public/favicon_io/favicon.ico">
<link rel="manifest" href="../public/favicon_io/site.webmanifest">
<!-- JS -->
<script src="js/index.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="css/styles.css" />
<!-- Meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<body>
</head>
<body>
<img id="router-logo" src="/public/RoutERLogo.png">
<div id="search-container">
<input id="emergency-search" name="emergency-search" type="text" onKeyPress="searchbarOnKeyPress(event, false)" onKeyUp="showResults(this.value)" placeholder="Type your emergency here..." />
<div id="autocomplete-results"></div>
</div>
<a id="to-map-link" href="map/index.html">
<button onclick="searchbarOnKeyPress(event, true)" id="to-map-button">
Map
</button>
</a>
</body>
</html>