-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (59 loc) · 2.14 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Remote World</title>
<link rel="stylesheet" href="styles/styles.css" media="screen" charset="utf-8">
</head>
<body>
<section id="menu">
<div>
<section id="avatar">
<img src="images/avatar.png" id="picture" alt="">
</section>
<p>
Welcome to Remote World!<br>
Filter the map according to<br>
your requirements
</p>
<section id="buttons">
<button id="cafe">CAFE</button>
<button id="co-working">CO-WORKING</button>
<button id="library">LIBRARY</button>
</section>
<h4>ADDITIONAL FILTERS</h4>
<form action="">
<input type="checkbox" id="rating" name="filter" value="rating"> Google Rating: 4+ stars<br>
<input type="checkbox" id="hours" name="filter" value="hours"> Open now
</form>
<section id="reviewButtons">
<button id="myReviews">SHOW MY REVIEWS</button>
</section>
<section class="reviewInput hide">
<input type="textarea">
</section>
<button class="submitReview hide">Submit a Review for</button>
<div id="myReviewsSection"></div>
<button class="closeReview">HIDE REVIEWS</button>
<section id="footer">
<p>© 2017 Remote World</p>
<img src="images/madeinnyc.png" alt="">
</section>
</div>
</section>
<section id="main" class="container">
<div id="map"></div>
<div id="right-panel">
<h3>RESULTS</h3>
<ul id="places"></ul>
<button id="more">MORE</button>
</div>
</section>
<script src="https://www.gstatic.com/firebasejs/4.3.0/firebase.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBOtMSuQsHw6baC3MoTIGLRewEI4bbUC1w&libraries=places"></script>
<script src="js/vendor/jquery-3.0.0.min.js"></script>
<script src="js/vendor/underscore-min.js"></script>
<script src="js/app.js"></script>
</body>
</html>