-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreview.html
299 lines (279 loc) · 10.3 KB
/
review.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap Link -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
defer
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
defer
></script>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/4f6d96e165.js"
crossorigin="anonymous"
></script>
<!-- Google Font -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap"
rel="stylesheet"
/>
<!-- JQuery Link -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Page Name -->
<title>Velocity. Review Order</title>
<!-- Linking CSS -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/progressBars.css" />
<link rel="stylesheet" href="css/review-components.css" />
<link rel="stylesheet" href="css/orderSummary.css" />
<link rel="stylesheet" href="css/bag-components.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/checkout-components.css" />
<link rel="stylesheet" href="css/lottie.css" />
<!-- Linking JS -->
<script src="js/script.js" defer></script>
<script src="js/navbarFooter.js" defer></script>
<script src="js/checkout.js" defer></script>
<script src="js/cart.js" defer></script>
<script src="js/review.js" defer></script>
<script src="js/showAnimation.js" defer></script>
<!-- Add a favicon to the tab bar -->
<link rel="icon" type="image/x-icon" href="images/Logo/Logo-short.png" />
</head>
<body>
<header>
<div id="navbar-container"></div>
</header>
<div class="topbox"></div>
<section>
<div class="container-fluid py-3">
<div class="container text-center">
<!-- Content in the middle at the top -->
<h1>Checkout</h1>
<div class="container mt-5 d-flex flex-column align-items-center">
<ul
id="checkout-progressBar-top"
class="list-unstyled d-flex justify-content-between align-items-center"
style="width: 80vw"
>
<li class="step-indicator" style="width: 10vw">
<i class="fa-regular fa-circle-check fa-2xl"></i>
</li>
<li class="step-indicator" style="width: 25vw">
<div class="line"></div>
</li>
<li class="step-indicator" style="width: 10vw">
<i class="fa-regular fa-circle-check fa-2xl"></i>
</li>
<li class="step-indicator" style="width: 25vw">
<div class="line"></div>
</li>
<li class="step-indicator" style="width: 10vw">
<div class="circle"></div>
</li>
</ul>
<ul
class="list-unstyled d-flex justify-content-between align-items-center"
style="width: 80vw"
>
<li class="step-indicator active" style="width: 25vw">
<p>Payment</p>
</li>
<li class="step-indicator" style="width: 25vw">
<p>Shipping</p>
</li>
<li class="step-indicator" style="width: 25vw">
<p>Review</p>
</li>
</ul>
</div>
<div class="container mt-5">
<p id="checkout-freeShippingBar-message">
Congratualtions! You are entitled for the Free Next-Day Delivery!
</p>
<!-- Progress Bar -->
<div class="progress mt-3">
<div
id="checkout-freeShippingBar-bar"
class="progress-bar"
role="progressbar"
style="width: 85%; background-color: #44403c"
aria-valuenow="50"
aria-valuemin="0"
aria-valuemax="100"
></div>
</div>
</div>
</div>
</div>
</section>
<section id="bag" class="col-md-10 mt-5">
<div class="row">
<div class="col-md-12 px-5">
<h2 class="mb-3 ms-5">Bag</h2>
<div id="cart-items" class="row mb-3 mx-5 d-flex align-items-center">
<!-- Use JS to insert cart products -->
</div>
</div>
</div>
</section>
<section id="paymentDetails" class="col-md-10 mt-5">
<div class="row">
<div class="col-md-12 px-5">
<h2 class="mb-4 ms-5">Payment Details</h2>
<div
class="row d-flex justify-content-between align-items-center mx-5"
>
<div class="row d-flex justify-content-between pb-4">
<p id="paymentMethodText" class="col-md-7">
Payment Method: Credit Card
</p>
</div>
<hr class="mt-4" />
</div>
</div>
</div>
</section>
<section id="shippingDetails" class="col-md-10 mt-5">
<div class="row">
<div class="col-md-12 px-5">
<h2 class="mb-4 ms-5">Shipping Details</h2>
<div
class="row d-flex justify-content-between align-items-center mx-5"
>
<div class="row d-flex justify-content-between pb-4">
<p id="shippingOptionText" class="col-md-7">Shipping Option:</p>
</div>
<div class="row d-flex justify-content-between pb-4">
<p id="firstNameText" class="col-md-7">First Name:</p>
</div>
<div class="row d-flex justify-content-between pb-4">
<p id="lastNameText" class="col-md-7">Last Name:</p>
</div>
<div class="row d-flex justify-content-between pb-4">
<p id="addressText" class="col-md-7">Address:</p>
</div>
<div class="row d-flex justify-content-between pb-4">
<p id="unitNumberText" class="col-md-7">Unit Number:</p>
</div>
<div class="row d-flex justify-content-between pb-4">
<p id="phoneNumberText" class="col-md-7">Phone Number:</p>
</div>
<hr class="mt-4" />
</div>
</div>
</div>
</section>
<!-- Order Summary -->
<section id="orderSummary" class="col-md-10 mt-5">
<div class="row">
<div class="col-md-12 px-5">
<h2 class="mb-4 ms-5">Order Summary</h2>
<div
class="row d-flex justify-content-between align-items-center mx-5"
>
<div class="row d-flex justify-content-between pb-3">
<h3 id="subtotalText" class="col-md-7">Subtotal</h3>
<p id="subtotal-price" class="col-md-2 text-end">$0.00</p>
</div>
<div class="row gy-2 d-flex justify-content-between pb-3">
<h3 id="shippingFeeText" class="col-md-7">Shipping Fee</h3>
<p id="shippingFeeAmount" class="col-md-2 text-end">$0.00</p>
</div>
<div class="row gy-2 d-flex justify-content-between pb-3">
<h3 id="cashbackRebateText" class="col-md-7">Cashback Rebate</h3>
<p id="cashbackRebateAmount" class="col-md-2 text-end">-$0.00</p>
</div>
<hr class="mt-4" />
</div>
</div>
</div>
<div class="row">
<div class="col container mx-4">
<div
id="total-container"
class="row gy-2 mt-3 d-flex justify-content-between mx-5"
>
<h2 id="totalText" class="col-md-7 mb-2">
Total
<small>Including GST</small>
</h2>
<div
class="col-md-2 d-flex justify-content-end flex-column align-items-end"
>
<h3 id="totalAmount" class="row mb-2" style="margin-right: 0px">
$0.00
</h3>
<h4
id="total-points"
class="row"
style="margin-right: 0px; color: #ff6b00"
>
+0 Points
</h4>
</div>
</div>
</div>
</div>
<form id="orderForm" class="needs-validation" novalidate>
<!-- Agree to Delivery T&C -->
<div class="checkForm col-md-12 mx-5" style="margin-top: 70px">
<div class="form-check d-flex align-items-center mx-4">
<input
class="form-check-input"
type="checkbox"
value=""
id="deliveryTC"
required
/>
<label class="form-check-label" for="deliveryTC">
I have read and agree to the terms and conditions*
</label>
</div>
<!-- Position invalid feedback here, directly below the checkbox and label -->
<div class="invalid-feedback">You must agree before submitting.</div>
</div>
</form>
</section>
<div class="col-12 mt-5" id="submitBtn">
<button class="btn btn-secondary" type="button" id="placeOrderButton">
Place Order
</button>
</div>
<footer class="bd-footer py-4 py-md-5 mt-5 bg-body-tertiary">
<div
id="footer"
class="container py-4 py-md-5 px-4 px-md-3 text-body-secondary"
></div>
</footer>
<script
src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs"
type="module"
></script>
<dotlottie-player
src="https://lottie.host/d89b9987-a19a-4ef3-a328-0742538e1fe6/ufOnosv0RF.json"
id="confirmOrder"
background="transparent"
speed="1"
style="width: 300px; height: 300px"
loop
autoplay
></dotlottie-player>
</body>
</html>