-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreserve.html
303 lines (283 loc) · 15.2 KB
/
reserve.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/72db024734.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/reserve.css">
<title>Reserve</title>
<link rel="shortcut icon" href="img/logo.png" type="image/png">
</head>
<body>
<!--NAVIGATION BAR-->
<nav id="navbar" class="navbar navbar-expand-lg shadow fixed-top px-3 container-fliud">
<a class="navbar-brand py-0" href="index.html">
<img class="mr-3" src="img/logo.png" alt="" width="40" height="40">AARC
</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#expandnav" aria-label="toggle nav bar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="expandnav">
<ul class="navbar-nav">
<li class="nav-item me-auto"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item me-auto"><a href="cars.html" class="nav-link">Cars</a></li>
<li class="nav-item me-auto"><a href="reserve.html" class="nav-link">Reserve</a></li>
<li class="nav-item me-auto"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item me-auto"><a href="contact-us.html" class="nav-link">Contact Us</a></li>
</ul>
<ul class="navbar-nav ml-auto sm-icons">
<li class="nav-item me-auto ml-2"><a href="https://www.instagram.com/aarcarbpa/" class="nav-link"><i
class="fa-brands fa-instagram fa-2x"></i></a>
</li>
<li class="nav-item me-auto ml-2"><a href="https://twitter.com/aarcar_bpa" class="nav-link"><i
class="fa-brands fa-twitter fa-2x"></i></a>
</li>
</ul>
</div>
</nav>
<!-- HEADER -->
<section id="reserveHeading" class="container-fliud text-center text-white">
<h1>RESERVE YOUR CAR</h1>
<div class="col-lg-10 offset-lg-1">
<p>Our team of car sales professionals are here to help you! Reserve a car below to receive personalized
support and more information on the car of your dreams. </p>
</div>
</section>
<!-- FORM -->
<div class="mb-5">
<div id="multi-step-form-container">
<!-- Form Steps / Progress Bar -->
<ul class="form-stepper form-stepper-horizontal text-center mx-auto pl-0">
<!-- Step 1 -->
<li class="form-stepper-active text-center form-stepper-list" step="1">
<a class="mx-2">
<span class="form-stepper-circle">
<span>1</span>
</span>
<div class="label">Personal Information</div>
</a>
</li>
<!-- Step 2 -->
<li class="form-stepper-unfinished text-center form-stepper-list" step="2">
<a class="mx-2">
<span class="form-stepper-circle text-muted">
<span>2</span>
</span>
<div class="label text-muted">Select Your Car</div>
</a>
</li>
<!-- Step 3 -->
<li class="form-stepper-unfinished text-center form-stepper-list" step="3">
<a class="mx-2">
<span class="form-stepper-circle text-muted">
<span>3</span>
</span>
<div class="label text-muted">Date and Time</div>
</a>
</li>
</ul>
<!-- Step Wise Form Content -->
<form id="userAccountSetupForm" name="userAccountSetupForm" enctype="multipart/form-data" method="POST">
<!-- Step 1 Content -->
<section id="step-1" class="form-step">
<h2 class="font-normal">Personal Information</h2>
<!-- Step 1 input fields -->
<div class="mt-3 personal-info">
<div class="row">
<div class="form-group col-6">
<label for="first">First Name</label>
<input type="text" class="form-control" id="first" aria-describedby="first"
placeholder="John">
</div>
<div class="form-group col-6">
<label for="last">Last Name</label>
<input type="text" class="form-control" id="last" aria-describedby="last"
placeholder="Smith">
</div>
</div>
<div class="row">
<div class="form-group col-6">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" aria-describedby="email"
placeholder="mail@example.com">
</div>
<div class="form-group col-6">
<label for="phone">Phone</label>
<input type="text" class="form-control" id="phone" aria-describedby="last"
placeholder="(123)456-7890">
</div>
</div>
<div class="form-group preferred">
<label for="method">Preferred Method of Contact</label>
<select id="method" class="form-control">
<option selected>Phone</option>
<option>Email</option>
</select>
</div>
</div>
<div class="mt-3">
<button class="button btn-navigate-form-step" type="button" step_number="2">Next</button>
</div>
</section>
<!-- Step 2 Content, default hidden on page load. -->
<section id="step-2" class="form-step d-none">
<h2 class="font-normal">Select Your Car</h2>
<!-- Step 2 input fields -->
<div class="mt-3">
<div id="carCards"></div>
</div>
<div class="mt-3">
<button class="button btn-navigate-form-step" type="button" step_number="1">Prev</button>
<button class="button btn-navigate-form-step" type="button" step_number="3">Next</button>
</div>
</section>
<!-- Step 3 Content, default hidden on page load. -->
<section id="step-3" class="form-step d-none">
<h2 class="font-normal">Date and Time</h2>
<!-- Step 3 input fields -->
<div class="mt-3">
<div class="row">
<div class="form-group dateInput col-md-8">
<div id="input-calendar">
<input class="float-left" type="date" placeholder="" id="date">
<div class="row timetable_container">
<div id="calendar" class="calendar">
<span>Add something here</span>
</div>
</div>
</div>
</div>
<div class="text-center timeInput col-md-4 row">
<div class="col-12">
<input type="radio" class="btn-check time-block" name="options" id="option1"
autocomplete="off" checked />
<label class="btn time-label mx-3" for="option1">8:00 AM - 10:00
AM</label>
</div>
<div class="col-12">
<input type="radio" class="btn-check time-block" name="options" id="option2"
autocomplete="off" />
<label class="btn time-label mx-3" for="option2">10:00 AM - 12:00
PM</label>
</div>
<div class="col-12">
<input type="radio" class="btn-check time-block" name="options" id="option3"
autocomplete="off" />
<label class="btn time-label mx-3" for="option3">12:00 PM - 2:00
PM</label>
</div>
<div class="col-12">
<input type="radio" class="btn-check time-block" name="options" id="option4"
autocomplete="off" />
<label class="btn time-label mx-3" for="option4">2:00 PM - 4:00
PM</label>
</div>
<div class="col-12">
<input type="radio" class="btn-check time-block" name="options" id="option5"
autocomplete="off" />
<label class="btn time-label mx-3" for="option5">4:00 PM - 6:00
PM</label>
</div>
<div class="col-12">
<input type="radio" class="btn-check time-block" name="options" id="option6"
autocomplete="off" />
<label class="btn time-label mx-3" for="option6">6:00 PM - 8:00
PM</label>
</div>
</div>
</div>
</div>
<div class="mt-3">
<button class="button btn-navigate-form-step" type="button" step_number="2">Prev</button>
<button class="button submit-btn" type="submit">Submit</button>
</div>
</section>
<!-- </form> -->
</div>
</div>
<!-- Footer -->
<footer class="text-center text-lg-start">
<section id="footerBanner" class="d-flex justify-content-between p-4">
<div class="me-5">
<span>Get connected with us on social networks:</span>
</div>
<div>
<a href="https://twitter.com/aarcar_bpa" class="me-4">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.instagram.com/aarcarbpa/" class="me-4">
<i class="fab fa-instagram"></i>
</a>
</div>
</section>
<section>
<div class="container text-center text-md-start mt-5">
<div class="row mt-3">
<div class="col-md-3 col-lg-5 col-xl-4 mx-auto mb-4">
<h6 class="text-uppercase fw-bold">AARCAR</h6>
<hr class="mb-4 mt-0 d-inline-block mx-auto" />
<p>
Aarcar is devoted to helping you find your path to your dream car.
</p>
</div>
<div class="col-md-4 col-lg-3 col-xl-4 mx-auto mb-4">
<h6 class="text-uppercase fw-bold">Useful links</h6>
<hr class="mb-4 mt-0 d-inline-block mx-auto" />
<p>
<a href="index.html">Home</a>
</p>
<p>
<a href="cars.html">Cars</a>
</p>
<p>
<a href="reserve.html">Reserve</a>
</p>
<p>
<a href="about.html">About</a>
</p>
<p>
<a href="contact-us.html">Contact Us</a>
</p>
</div>
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mb-md-0 mb-4">
<h6 class="text-uppercase fw-bold">Contact</h6>
<hr class="mb-4 mt-0 d-inline-block mx-auto" />
<p><i class="fas fa-home mr-3"></i> Eagan, MN 55123, US</p>
<p><i class="fas fa-envelope mr-3"></i> aarcar.bpa@gmail.com</p>
<p><i class="fas fa-phone mr-3"></i> + 01 234 567 88</p>
</div>
</div>
</div>
</section>
<!-- Section: Links -->
<!--
<!-- Copyright
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2)">
© 2020 Copyright:
<a class="" href="https://mdbootstrap.com/">MDBootstrap.com</a>
</div>
Copyright -->
</footer>
<!--JavaScript-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.12.3.js"
integrity="sha256-1XMpEtA4eKXNNpXcJ1pmMPs8JV+nwLdEqwiJeCQEkyc=" crossorigin="anonymous"></script>
<script src="js/reserve.js"></script>
</body>
</html>