-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
105 lines (90 loc) · 4.41 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>Relief</title>
<meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link href="css/default.css" rel="stylesheet">
<link href="css/toiletcard.css" rel="stylesheet">
<link href="css/map.css" rel="stylesheet">
<link href="css/simple-sidebar.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBA1Pxz5-2TQfE4hH3mbhzgInYbBIki6QY&callback=init_map"
async defer></script>
<script type="text/javascript" src="js/star-rating.js"></script>
<script src="main.js" defer></script>
<script type="text/javascript" src="js/navbar.js"></script>
</head>
<body>
<div class = "btn-grp">
<a href="/home.html" class="btn btn-primary p-3" id="menu-toggle"><i class="fa fa-bars"></i></a>
<a href="front-end/search-filter.html" class="btn btn-primary p-3" id="menu-toggle"><i class="fa fa-filter"></i></a>
</div>
<div id="map"></div>
<div id="info-card" class="card fixed-bottom">
<div class="card-header">
<span class="rating"><b>3.3</b><i class="fas fa-star"></i></span>
<h2 class="address">177 King St</h2>
<div class="card-text">
<p>Sydney, NSW</p>
<p>199m away | <span id="opening-hours"></span></p>
</div>
</div>
<div id="info-page">
<div class="button-bar">
<a id="direction-btn" class="btn btn-filled" role="button">Directions</a>
<a id="save-btn" class="btn btn-filled" href="#" role="button">Save</a>
<a class="btn btn-filled" id="flip" href="#" role="button">Rate</a>
</div>
<hr>
<div class="margin" id="panel">
<div class="md-form">
<input type="text" id="toilet-review" class="form-control" placeholder="Write a comment...">
</div>
<div class="star-rating">
<span class="far fa-star" data-rating="1"></span>
<span class="far fa-star" data-rating="2"></span>
<span class="far fa-star" data-rating="3"></span>
<span class="far fa-star" data-rating="4"></span>
<span class="far fa-star" data-rating="5"></span>
<input type="hidden" name="whatever1" class="rating-value" value="0">
</div>
</div>
<hr>
<div class="icons margin">
<h5>Icons go here</h5>
</div>
<hr>
<div class="details margin">
<h5>Access</h5>
<p>Toilet is only available to patrons of the Cafe OR people with a MLAK Disabled Access Toilet Key. Square Hirers are provided keys to access the public toilets outside Cafe hours. Please call 9748 995</p>
<h5>Number of Stalls</h5>
<p>4</p>
</div>
<hr>
<div class="reviews margin row">
<div class="col-8">
<p class="review-item">Wow I love this toilet!</p>
</div>
<div class="col-4">
<p class="rating-small"><b>4.5 <span class="fa fa-star checked fa-small"></span>
</div>
</div>
</div>
</div>
</body>
</html>