-
Notifications
You must be signed in to change notification settings - Fork 1
/
cart_page.html
552 lines (548 loc) · 35.5 KB
/
cart_page.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HOME</title>
<!-- Custom Styles -->
<link rel="stylesheet" href="./css/styles.css">
<!-- Icons Styles -->
<link rel="stylesheet" href="./css/all.min.css">
<!-- Bootstraps Styles -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- Cart Scripts -->
<script src="./js/cart.js" async></script>
</head>
<body>
<!-- Header -->
<header class="header jumbotron">
<nav class="navbar navbar-expand-lg navbar-style">
<div class="container">
<div class="brand"><a class="navbar-brand" href="#">belle</a></div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="navbar-nav me-auto mb-2 mb-lg-0"></div>
<ul class="navbar-nav nav-menu me-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="./index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./make-up_page.html">MAKE UP</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
SKIN CARE
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="./skin-care_page.html">SKIN CARE</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="mask_page.html">MASK</a></li>
<li><a class="dropdown-item" href="moisturizer_page.html">MOISTURIZER</a></li>
<li><a class="dropdown-item" href="serum_page.html">SERUM</a></li>
<li><a class="dropdown-item" href="suncare_page.html">SUN CARE</a></li>
<li><a class="dropdown-item" href="toner_page.html">TONER</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
BRANDS
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="./brands_page.html">BRANDS</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">INNISFREE</a></li>
<li><a class="dropdown-item" href="#">NATURE REPUBLIC</a></li>
</ul>
</li>
</ul>
<ul class="navbar-nav nav-auth">
<li class="nav-item">
<a class="nav-link nav-cart" href="./cart_page.html"><i class="fas fa-shopping-cart"></i></a>
</li>
<li class="nav-item nav-user">
<a class="nav-link" href="#" data-bs-toggle="modal" data-bs-target="#ModalLogin"><i class="fas fa-user-circle"></i></a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Main -->
<main>
<div class="container cart">
<!-- <div class="container py-5">
<div class="mt-4 text-center"><img src="./img/belle1.png" alt="Logo"></div>
<p class="text-center">Keranjang masih belum terisi apapun</p>
<p class="text-center"><a href="./brands_page.html" class="btn-custom">Kembali berbelanja</a></p>
</div> -->
<div class="g-3 p-5">
<h4 class="d-flex justify-content-between align-items-center mb-3">
<span class="text-muted">Item List</span>
</h4>
<ul class="cart-items list-group mb-3">
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_AloeRevitalSoothingGel.html"><img src="./img/If_AloeRevitalSoothingGel.png" alt=""></a>
<h6 class="my-0">INNISFREE Aloe Revital Soothing Gel 300ml</h6>
</div>
<div>
<span class="cart-price">Rp100000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_BijaTroubleSkin.html"><img src="./img/If_BijaTroubleSkin.png" alt=""></a>
<h6 class="my-0">INNISFREE Bija Trouble Skin 200ml</h6>
</div>
<div>
<span class="cart-price">Rp220000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_GreenTeaSeedSerum.html"><img src="./img/If_GreenTeaSeedSerum.png" alt=""></a>
<h6 class="my-0">INNISFREE Green Tea Seed Serum 80ml</h6>
</div>
<div>
<span class="cart-price">Rp370000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_GreenTeaSeedSkin.html"><img src="./img/If_GreenTeaSeedSkin.png" alt=""></a>
<h6 class="my-0">INNISFREE Green Tea Seed Skin 200ml</h6>
</div>
<div>
<span class="cart-price">Rp290000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_IntensiveLongLastingSunscreen.html"><img src="./img/If_IntensiveLongLastingSunscreen.png" alt=""></a>
<h6 class="my-0">INNISFREE Intensive Long-lasting Sunscreen SPF50+ PA++++ 50ml</h6>
</div>
<div>
<span class="cart-price">Rp210000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_JejuLavaSeawaterBoostingAmpouleEX.html"><img src="./img/If_JejuLavaSeawaterBoostingAmpouleEX.png" alt=""></a>
<h6 class="my-0">INNISFREE Jeju Lava Seawater Boosting Ampoule EX 25 ml</h6>
</div>
<div>
<span class="cart-price">Rp300000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_JejuPomegranateRevitalizingSerum.html"><img src="./img/If_JejuPomegranateRevitalizingSerum.png" alt=""></a>
<h6 class="my-0">INNISFREE Jeju Pomegranate Revitalizing Serum 50ml</h6>
</div>
<div>
<span class="cart-price">Rp430000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_JejuVolcanicNosePack1Patch.html"><img src="./img/If_JejuVolcanicNosePack1Patch.png" alt=""></a>
<h6 class="my-0">INNISFREE Jeju Volcanic Nose Pack 1 patch</h6>
</div>
<div>
<span class="cart-price">Rp10000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="If_JejuVolcanicPoreClayMask.html"><img src="./img/If_JejuVolcanicPoreClayMask.png" alt=""></a>
<h6 class="my-0">INNISFREE Jeju Volcanic Pore Clay Mask</h6>
</div>
<div>
<span class="cart-price">Rp180000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_Argan20EssentialToner.html"><img src="./img/N_Argan20EssentialToner.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Argan 20° Essential Toner</h6>
</div>
<div>
<span class="cart-price">Rp308000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_Argan20RealSqueezeAmpoule.html"><img src="./img/N_Argan20RealSqueezeAmpoule.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Argan 20° Real Squeeze Ampoule</h6>
</div>
<div>
<span class="cart-price">Rp518000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_Argan20SteamEmulsion.html"><img src="./img/N_Argan20SteamEmulsion.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Argan 20° Steam Emulsion</h6>
</div>
<div>
<span class="cart-price">Rp308000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_ByFlowerBlusher01PinkBlossom.html"><img src="./img/N_ByFlowerBlusher01PinkBlossom.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC By Flower Blusher 01 Pink Blossom</h6>
</div>
<div>
<span class="cart-price">Rp145000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_ByFlowerTripleMousseTint01RedMousse.html"><img src="./img/N_ByFlowerTripleMousseTint01RedMousse.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC By Flower Triple Mousse Tint 01 Red Mousse</h6>
</div>
<div>
<span class="cart-price">Rp208000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_CaliforniaAloeDailySunBlock.html"><img src="./img/N_CaliforniaAloeDailySunBlock.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC California Aloe Daily Sun Block Spf50+Pa++++</h6>
</div>
<div>
<span class="cart-price">Rp328000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_CaliforniaAloeVera74CoolingEyeSerum.html"><img src="./img/N_CaliforniaAloeVera74CoolingEyeSerum.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC California Aloe Vera 74 Cooling Eye Serum</h6>
</div>
<div>
<span class="cart-price">Rp225000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_EcoCrayonLipRouge01CandyPink.html"><img src="./img/N_EcoCrayonLipRouge01CandyPink.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Eco Cryon Lip Rouge 01 Candy Pink</h6>
</div>
<div>
<span class="cart-price">Rp125000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_PureShineLipstick09ScarletRed.html"><img src="./img/N_PureShineLipstick09ScarletRed.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Pure Shine Lipstick 09 Scarlet Red</h6>
</div>
<div>
<span class="cart-price">Rp182000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_PureShineNaturalCushion02NaturalBeige.html"><img src="./img/N_PureShineNaturalCushion02NaturalBeige.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Pure Shine Natural Cushion 02 Natural Beige Spf50+ Pa+++</h6>
</div>
<div>
<span class="cart-price">Rp205000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_RealNatureAloeMaskSheet.html"><img src="./img/N_RealNatureAloeMaskSheet.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Real Nature Aloe Mask Sheet</h6>
</div>
<div>
<span class="cart-price">Rp18000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_RealNatureBambooMaskSheet.html"><img src="./img/N_RealNatureBambooMaskSheet.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Real Nature Bamboo Mask Sheet</h6>
</div>
<div>
<span class="cart-price">Rp18000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_RealNatureOrangeMaskSheet.html"><img src="./img/N_RealNatureOrangeMaskSheet.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Real Nature Orange Mask Sheet</h6>
</div>
<div>
<span class="cart-price">Rp18000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_RealSqueezeAloeVeraToner.html"><img src="./img/N_RealSqueezeAloeVeraToner.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Real Squeeze Aloe Vera Toner</h6>
</div>
<div>
<span class="cart-price">Rp320000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="cart-row list-group-item d-flex ">
<div class="p-2 flex-grow-1">
<a href="N_SoothingMoistureAloeVera92SoothingGel.html"><img src="./img/N_SoothingMoistureAloeVera92SoothingGel.png" alt=""></a>
<h6 class="my-0">NATURE REPUBLIC Soothing & Moisture ALoe Vera 92% Soothing Gel</h6>
</div>
<div>
<span class="cart-price">Rp98000</span><br>
<input type="number" class="form-control cart-quantity-input" id="floatingInput" placeholder="" min="1" max="50" value="1"><br>
<button type="button" class="btn-custom btn-remove">Remove</button>
</div>
</li>
<li class="list-group-item d-flex justify-content-between">
<span>Total (Rp)</span>
<strong class="cart-total-price">Rp5134000</strong>
</li>
<form class="py-2">
<div class="input-group">
<input type="text" class="form-control" placeholder="Promo code">
<button type="submit" class="btn btn-success">Redeem</button>
</div>
</form>
</ul>
<button class="w-100 btn-custom btn-lg" type="submit" onclick="confirm()">Konfirmasi</button>
</div>
</div>
<div class="login">
<div class="modal fade" id="ModalLogin" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel">Masuk</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Alamat Email</label>
<input type="email" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Password</label>
<input type="name" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<button type="button" class="btn-custom">Masuk</button>
</div>
</form>
</div>
<div class="modal-footer">
<small class="text-center">Belum punya akun? <a href="" data-bs-dismiss="modal" data-bs-toggle="modal" data-bs-target="#ModalRegister" class="regist"><strong>Daftar Sekarang</strong></a></small>
</div>
</div>
</div>
</div>
</div>
<div class="register">
<div class="modal fade" id="ModalRegister" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel">Daftar</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="row g-3 mb-3 mx-3">
<div class="col">
<label for="fname" class="form-label">Nama Depan</label>
<input type="text" class="form-control" placeholder="" aria-label="First name">
</div>
<div class="col">
<label for="lname" class="form-label">Nama Belakang</label>
<input type="text" class="form-control" placeholder="" aria-label="Last name">
</div>
</div>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Alamat Email</label>
<input type="email" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Password</label>
<input type="name" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<button type="button" class="btn-custom">Masuk</button>
</div>
</form>
</div>
<div class="modal-footer">
<small class="text-center">Sudah punya akun? <a href="" data-bs-dismiss="modal" data-bs-toggle="modal" data-bs-target="#ModalLogin" class="regist"><strong>Masuk Sekarang</strong></a></small>
</div>
</div>
</div>
</div>
</div>
<div class="login">
<div class="modal fade" id="ModalLogin" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel">Masuk</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Alamat Email</label>
<input type="email" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Password</label>
<input type="name" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<button type="button" class="btn-custom">Masuk</button>
</div>
</form>
</div>
<div class="modal-footer">
<small class="text-center">Belum punya akun? <a href="" data-bs-dismiss="modal" data-bs-toggle="modal" data-bs-target="#ModalRegister" class="regist"><strong>Daftar Sekarang</strong></a></small>
</div>
</div>
</div>
</div>
</div>
<div class="register">
<div class="modal fade" id="ModalRegister" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel">Daftar</h4>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="row g-3 mb-3 mx-3">
<div class="col">
<label for="fname" class="form-label">Nama Depan</label>
<input type="text" class="form-control" placeholder="" aria-label="First name">
</div>
<div class="col">
<label for="lname" class="form-label">Nama Belakang</label>
<input type="text" class="form-control" placeholder="" aria-label="Last name">
</div>
</div>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Alamat Email</label>
<input type="email" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<label for="email" class="form-label">Password</label>
<input type="name" class="form-control" id="FormControl" placeholder="">
</div>
<div class="mb-3 mx-4">
<button type="button" class="btn-custom">Masuk</button>
</div>
</form>
</div>
<div class="modal-footer">
<small class="text-center">Sudah punya akun? <a href="" data-bs-dismiss="modal" data-bs-toggle="modal" data-bs-target="#ModalLogin" class="regist"><strong>Masuk Sekarang</strong></a></small>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- footer -->
<footer class="footer">
<div class="container">
<div class="row ">
<div class="col-md-4 text-md-left footer-left">
<div class="mt-4"><img src="./img/belle1.png" alt="Logo"></div>
<p class="text-light mb-5">© 2020 Belle Indonesia. All Right Reserved</p>
</div>
<div class="col-md-4 text-md-left footer-middle">
<div class="mt-4">
<p>INFORMATION</p>
<ul class="list-unstyled">
<li><a href="#" data-bs-toggle="modal" data-bs-target="#ModalLogin">Log In</a></li>
<li><a href="#" data-bs-toggle="modal" data-bs-target="#ModalRegister">Register</a></li>
<li><a href="./about_us.html">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
<div class="col-md-4 text-md-left footer-right">
<div class="mt-4">
<p>SIGN UP FOR BELLE NEWSLETER</p>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="" aria-label="email" aria-describedby="button-addon2">
<button class="btn btn-success" type="button" id="button-addon2">SUBSCRIBE</button>
</div>
<div class="my-4">
<a href="#"><i class="fab fa-facebook"></i></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-line"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Custom Scripts -->
<script src="./js/script.js"></script>
<!-- Bootstrap Scripts -->
<script src="./js/bootstrap.bundle.min.js"></script>
<!-- JQuery script -->
<script src="./js/jquery-3.5.1.min.js"></script>
</body>
</html>