forked from KalashThakur/straberrynet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcartF.html
68 lines (51 loc) · 2.29 KB
/
cartF.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
<!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">
<title>Document</title>
<link rel="stylesheet" href="./cartF.css">
</head>
<body>
<div id="heading">SHOPPING BAG</div>
<div id="container">
<div id="cont1">
<div id="notification">
<h3 id="notify">NOTIFICATION (4)</h3>
<ul>
<li>Please note that delivery to your selected region will be delayed because order dispatches are on hold due to shipping restrictions. For more information, please contact info@strawberrynet.com.</li>
<li>Please note that a 3.5% freight surcharge will be applied at checkout.</li>
<li>This order may be subject to duties and taxes, which are payable by the customer and are not refundable.</li>
<li>Spend a minimum of USD150 after discounts to qualify for free shipping, or spend a minimum of USD100 after discounts to qualify for a reduced shipping charge at USD5. A shipping cost of USD10 will be charged for orders below USD100.</li>
</ul>
</div>
<div id="cart-details">
<table id="table"></table>
<div id="total_price">
<div>Item Total (<span class="count">0</span>)</div>
<div id="amount"></div>
</div>
</div>
</div>
<div id="cont2">
<div id="sign">
<div onclick="sign_in()">Sign In</div>
<div onclick="login()">New Here?</div>
</div>
<div id="description_box"></div>
<h2 id="or">OR</h2>
<div id="checkout">
<h3 id="guest">Guest Checkout</h3>
<!-- <form action="" id="form3"> -->
<input type="email" required placeholder="Email address" id="emailAdd" class="email1">
<button id="btn1">CONTINUE AS GUEST</button>
<!-- <input type="submit" value="CONTINUE AS GUEST"> -->
<!-- </form> -->
</div>
</div>
</div>
</body>
</html>
<script src="./cartF.js">
</script>