-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetailsPage.html
165 lines (146 loc) · 5.75 KB
/
detailsPage.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="static/css/detailsPage.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fjalla+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
<title>Details Page - TripMate</title>
<link rel = "icon" href = "static/img/tripmate-logo.png" type = "image/x-icon">
</head>
<body>
<div class="navBar">
<div class="logoBlock">
<img class="logoIcon" src="static/img/tripmate-logo.png">
<p class="tripmateName">TripMate</p>
</div>
<div class="sidenav">
<div class="closebtn"><a href="javascript:void(0)" onclick="closeNav()">✕</a></div>
<a href="form.html" class="dropDownElement">Location Menu</a>
<a href="#" class="dropDownElement">About</a>
<a href="#" class="dropDownElement">FAQs</a>
<a href="#" class="dropDownElement">Contact Us</a>
</div>
<div class="navSlideMenu" onclick="openNav()">
<p>☰</p>
</div>
</div>
<div class="flex-container containerBox">
<div class="tableHeader">
<div class="placeHeader">
<p class="headLabel">
<!-- Location name -->
</p>
<p class="addressLabel">
<!-- Location address -->
</p>
</p>
<p class="openCloseInfo"><b>
<!-- open/closed --></b></p>
</div>
<div class="rightHeaderBlock">
<button class="viewMap">VIEW IN MAP</button>
</div>
</div>
<div class="categoryElement categoryTime">
<div class="timeBlock">
<p class="timeBlockText">OPENING TIME</p>
<p class="opentime">
<!-- opening time -->
</p>
</div>
<div class="borderline"></div>
<div class="timeBlock">
<p class="timeBlockText">CLOSING TIME</p>
<p class="closetime">
<!-- closing time -->
</p>
</div>
</div>
<div class="categoryDescription">
<p class="descriptionLabel">Description</p>
<p class="descriptionText"></p>
</div>
<div class="categoryElement ">
<div class="labelLeft">
<p class="nameLabel">Congestion Level</p>
</div>
<div class="rightBlock">
<div class="borderline"></div>
<div class="secondBlock">
<img class="icon congestionIcon" src="">
<p class="iconLabel congestionLabel">
<!-- congestion level -->
</p>
</div>
</div>
</div>
<div class="categoryElement">
<div class="labelLeft">
<p class="nameLabel">Rating</p>
</div>
<div class="rightBlock">
<div class="firstBlock">
<p class="firstBlockLabel starRating">
<!-- location rating -->
</p>
<p class="firstBlockLowerLabel">star</p>
</div>
<div class="borderline"></div>
<div class="secondBlock">
<img class="icon" src="static/img/star.png">
</div>
</div>
</div>
<div class="categoryElement">
<div class="labelLeft">
<p class="nameLabel">Distance</p>
</div>
<div class="rightBlock">
<div class="firstBlock">
<p class="firstBlockLabel distanceLabel">
<!-- distance -->
</p>
<p class="firstBlockLowerLabel">km away</p>
</div>
<div class="borderline"></div>
<div class="secondBlock">
<img class="icon" src="static/img/location.png">
</div>
</div>
</div>
<div class="categoryElement">
<div class="labelLeft">
<p class="nameLabel">Safety Score</p>
</div>
<div class="rightBlock">
<div class="firstBlock">
<p class="firstBlockLabel safetyscore">
<!-- safety -->
</p>
<p class="firstBlockLowerLabel">out of 5</p>
</div>
<div class="borderline"></div>
<div class="secondBlock">
<img class="icon safetyIcon" src="">
</div>
</div>
</div>
<div class="categoryElement categoryDirection">
<div class="labelLeft">
<p class="nameLabel">Get directions to location</p>
</div>
<button class="goButton">GO</button>
</div>
<div class="categoryElement categoryHourwise">
<div class="labelLeft">
<p class="nameLabel">View congestion details</p>
</div>
<button class="goButton">GO</button>
</div>
</div>
<script type="text/javascript" src="static/js/detailsPage.js"></script>
</body>
</html>