-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
92 lines (77 loc) · 2.81 KB
/
cart.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/c9735f6ea9.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart</title>
</head>
<body>
<!-- header area -->
<div>
<nav style="background-color: #389da9!important; margin-bottom: 20px;"
class=" navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About us.</a>
</li>
</div>
</div>
</nav>
</div>
<!-- Product Cart Area -->
<div class="col">
<div class="row">
<div class="col-5">
</div>
<div class="col col-2">
<p style="font-size: 30px; font-weight: bold; " id="cartempty"></p>
<p style="font-size: 30px; font-weight: bold; " id="cartnotempty"></p>
</div>
<div class="col-5">
</div>
</div>
<div class="row">
<div class="col-2">
</div>
<div class="col col-8">
<div class="col-md-2"></div>
<table class="col-md-8 table table-striped table-dark">
<thead>
<tr>
<th scope="col">Product Id</th>
<th scope="col">Product Name</th>
<th scope="col">Selected Quantity</th>
<th scope="col">Price</th>
<th scope="col">Button</th>
</tr>
</thead>
<tbody class="cartList" id="cartList">
</tbody>
</table>
<div class="col-2"></div>
</div>
<div class="col-3"></div>
</div>
</div>
<div class="cart-total row" id="cart-total">
</div>
<script src="jquery.min.js"></script>
<script src="scriptcart.js"></script>
</body>
</html>