-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
33 lines (31 loc) · 1.08 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>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>Realtime Tracking with Pusher</title>
<meta charset="utf-8">
<link href="app.css" rel="stylesheet"></link>
</head>
<body>
<div class="header">
<h1>Track your Food!</h1>
</div>
<div class="container">
<div id="name-box" class="name-box">
<h3>Enter your username</h3>
<input id="name" type="text" placeholder="e.g. Mike">
<button id="saveNameButton">Save</button>
</div>
<div id="delivery-hero-box" class="name-box hidden">
<h3 id="welcome-message"></h3>
<h4 id="delivery-heroes-list"></h4>
<input id="deliveryHeroName" type="text" placeholder="e.g. Shelly">
<button id="addDeliveryHeroButton">Add</button>
</div>
<div id="map"></div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=GOOGLE_KEY_HERE"></script>
<script src="https://js.pusher.com/4.0/pusher.min.js"></script>
<script type="text/javascript" src="src/app.js"></script>
</body>
</html>