-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcart.html
75 lines (75 loc) · 2.76 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
<!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="shortcut icon" type="image/png" href="/favicon.png">
<title>JCREW - Cart</title>
<link rel="stylesheet" href="./styles/cart.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="Sign-in.css">
<link rel="stylesheet" href="./styles/admin_login.css">
<link
rel="stylesheet"
href="https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css"
/>
</head>
<body>
<div id="navbar"></div>
<div class="overlay"></div>
<div class="sign-in-area"></div>
<div class="sign-Up-Area"></div>
<form class="admin-login"></form>
<div id="background"></div>
<div id="quot">
<p>Have a question? We can help.</p>
</div>
<div id="mainSection">
<div id="cartProducts">
<div id="heading"><span>SHOPPING BAG </span> <span id="itemCount"></span></div>
<div class="grayline"></div>
<div id="cartItems">
<table class="table">
<thead>
<tr>
<th class="im">Image</th>
<th class="nm">Name</th>
<th class="pr">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div id="checkout">
<ul>
<li>
<div>Item Subtotal</div>
<div class="ItemSubtotal"></div>
</li>
<li>
<div>Estimate Shipping <br></div>
<div class="Shipping">INR 99.00</div>
</li>
<li>
<div>Estimate Total</div>
<div class="EstimateTotal"><span>INR</span></div>
</li>
</ul>
<a id="checkoutBtn" href="./checkout.html">
<button id="cartCheckout">CHECKOUT</button>
</a>
<p>Checkout with ESW</p>
<p>By clicking ‘Check Out Now’, you will be redirected to the ESW checkout page where payment will be taken and your order fulfilled by ESW, J.Crew's preferred partner for international sales.</p>
<div class="grayline"></div>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module" src="./scripts/cart.js"></script>
<script type="module" src="./Sign-in.js"></script>
<script type="module" src="./Auth-Component/admin_login_component.js"></script>
<script type="module" src="./scripts/admin_login.js"></script>