-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.html
232 lines (221 loc) · 12.4 KB
/
user.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="./styles/common.css">
<link rel="stylesheet" href="./styles/user.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Courgette&family=Saira:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<title>Cardom</title>
</head>
<body>
<div class="container-fluid p-0">
<nav class="nav-top fixed nav-bg-main justify-content-start color-white-trans font-logo d-flex flex-row" id="nav-top-pointer">
<div class="nav-brand flex-grow-1">
<i class="fa fa-car font-i-sm pr-2" aria-hidden="true"></i><a class="a-text-dec-none" href="index.html">Cardom</a><i class="fa fa-car font-i-sm pl-2" aria-hidden="true"></i>
</div>
<div class="navbar-list">
<ul class="navbar-list-group">
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Sign In</a></li>
<!-- <li><a href="#" id='logout-user'>Logout</a></li> -->
<li><a href="about.html">About</a></li>
</ul>
<div>
<div class="burger-group display-none">
<div class="burger"></div>
<div class="burger"></div>
<div class="burger"></div>
</div>
<div>
<b class="burger-cross display-none">☓</b>
</div>
</div>
</div>
</nav>
<div class="nav-bar-support">
</div>
<nav class="side-bar fixed" id="nav-side-pointer">
<ul>
<li><a href="selection.html">Book a Car</a></li>
<li><a href="index.html#ht-cardom">How to Cardom</a></li>
<li><a href="index.html#car-types">Types of Cars</a></li>
<!-- <li><a href="">Policies</a></li> -->
<!-- <li><a href="">Prestige Collections</a></li> -->
</ul>
<!-- <ul class="after-login-list">
<li class="user-welcome">Welcome Arjun</li>
<li><a href="user.html">Profile</a></li>
<li><a href="admin.html">Admin</a></li>
</ul> -->
</nav>
<div class="main-content">
<div class="user-content px-2 px-md-5 py-5">
<!-- Account Details -->
<div class="card mx-0 mx-lg-5">
<div class="card-header">
<h4>Account Details</h4>
</div>
<div class="card-body bg-dark text-light">
<h5 class="card-title">Arjun K Prasad</h5>
<div class="user-account-detail">
<table class="table table-striped table-dark">
<tr>
<td>Mob</td>
<td>8765457898</td>
</tr>
<tr>
<td>Email</td>
<td>arjun@arjun.com</td>
</tr>
<tr>
<td>License</td>
<td>AGHYJ977766</td>
</tr>
<tr>
<td>Current Booking (ID)</td>
<td>CRDM876876678CR67</td>
</tr>
<tr>
<td>Bookings last 30 days</td>
<td>2</td>
</tr>
<tr>
<td>Bookings last 6 months</td>
<td>10</td>
</tr>
<tr>
<td>Historical Data (Bookings)</td>
<td>15</td>
</tr>
</table>
</div>
</div>
</div>
<!-- Booked car detail -->
<div class="mx-0 mx-lg-5 my-5">
<h3 class="text-center mb-4">Current Booking</h3>
<div class="card mb-3 bg-light" style="margin: auto;">
<div class="row no-gutters">
<div class="col-md-5">
<img src="https://imgd.aeplcdn.com/664x374/n/cw/ec/41197/hyundai-verna-right-front-three-quarter7.jpeg" class="card-img" alt="..." class="img-fluid">
</div>
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title">Car Title</h5>
<ul>
<li>Amount Paid: </li>
<li>Booking ID: </li>
<li>Chauffeur booked?: </li>
</ul>
<p class="card-text"><small class="text-muted">Booked for </small></p>
</div>
</div>
<div class="text-light bg-warning px-3 py-2 border rounded text-center m-auto btn btn-block"><b>RETURN VEHICLE</b></div>
</div>
</div>
</div>
<hr>
<!-- Old booking details -->
<div class="mx-0 mx-lg-5 my-5">
<h3 class="text-center mb-4">Previous Booking</h3>
<div class="user-previous-booking">
<div class="card mb-3 bg-light booking-card-deco">
<div class="row no-gutters">
<div class="col-md-5">
<img src="https://imgd.aeplcdn.com/664x374/n/cw/ec/41197/hyundai-verna-right-front-three-quarter7.jpeg" class="card-img" alt="..." class="img-fluid">
</div>
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title">Car Title</h5>
<ul>
<li>Amount Paid: </li>
<li>Booking ID: </li>
<li>Chauffeur booked?: </li>
</ul>
<p class="card-text"><small class="text-muted">Booked for </small></p>
</div>
</div>
</div>
</div>
<div class="card mb-3 bg-light booking-card-deco">
<div class="row no-gutters">
<div class="col-md-5">
<img src="https://imgd.aeplcdn.com/664x374/n/cw/ec/41197/hyundai-verna-right-front-three-quarter7.jpeg" class="card-img" alt="..." class="img-fluid">
</div>
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title">Car Title</h5>
<ul>
<li>Amount Paid: </li>
<li>Booking ID: </li>
<li>Chauffeur booked?: </li>
</ul>
<p class="card-text"><small class="text-muted">Booked for </small></p>
</div>
</div>
</div>
</div>
<div class="card mb-3 bg-light booking-card-deco">
<div class="row no-gutters">
<div class="col-md-5">
<img src="https://imgd.aeplcdn.com/664x374/n/cw/ec/41197/hyundai-verna-right-front-three-quarter7.jpeg" class="card-img" alt="..." class="img-fluid">
</div>
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title">Car Title</h5>
<ul>
<li>Amount Paid: </li>
<li>Booking ID: </li>
<li>Chauffeur booked?: </li>
</ul>
<p class="card-text"><small class="text-muted">Booked for </small></p>
</div>
</div>
</div>
</div>
<div class="card mb-3 bg-light booking-card-deco">
<div class="row no-gutters">
<div class="col-md-5">
<img src="https://imgd.aeplcdn.com/664x374/n/cw/ec/41197/hyundai-verna-right-front-three-quarter7.jpeg" class="card-img" alt="..." class="img-fluid">
</div>
<div class="col-md-7">
<div class="card-body">
<h5 class="card-title">Car Title</h5>
<ul>
<li>Amount Paid: </li>
<li>Booking ID: </li>
<li>Chauffeur booked?: </li>
</ul>
<p class="card-text"><small class="text-muted">Booked for </small></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer: Follow our lastest updates and news -->
<footer class="col-12 mt-4 p-5 bg-d-section text-center index-social">
<h3 class="mb-4">Follow our lastest updates and news</h3>
<div class="social-icons">
<i class="fa fa-facebook-square"></i>
<i class="fa fa-twitter-square"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-linkedin-square"></i>
<i class="fa fa-pinterest-square"></i>
</div>
</footer>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uuid/8.1.0/uuidv4.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="./scripts/common.js" type="module"></script>
<script src="./scripts/user.js" type="module"></script>
</body>
</html>