-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckoutconfirmation.html
86 lines (84 loc) · 3.32 KB
/
checkoutconfirmation.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
<!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>Checkout Confirmation</title>
<link rel="stylesheet" href="./Styles/checkoutconfirmation.css">
</head>
<body>
<!-- TOP PART I.E. LOGO AND 3 DOTS STARTS FROM HERE -->
<div id="top">
<div id="top1">
<a href="index.html"><img src="https://www.shareasale.com/images/logo2016_1.jpg" alt=""></a>
<img src="./Images/2.PNG" alt="">
</div>
<hr>
</div>
<!-- TOP PART I.E. LOGO AND 3 DOTS ENDS HERE -->
<div id="mid">
<div id="mid1">
<p>Shipping Address</p>
<div id="mid1box">
<!-- APPEND ADDRESS HERE -->
<p>NAME:<span class="enteredtext">Shubham Singh Bhadouria</span><button id="addresschange" onclick="profile()">Change Address</button></p>
<p>TEL:<span class="enteredtext">7974003538</span></p>
<p>ADDRESS:<span class="enteredtext">276 DURGESH VIHAR JK ROAD BHOPAL M.P. 462041</span></p>
</div>
</div>
<div id="mid2">
<p>Product List</p>
<div id="mid2box">
<!-- APPEND PRODUCT LIST HERE -->
</div>
</div>
<div id="mid3">
<p>Shipping & Delivery</p>
<div id="mid3box">
<!-- APPEND SHIPPING AND DELIVERY DETAILS HERE -->
<div id="mid3inner1">
<p>Shipping Methods</p>
<p>Estimated Shipping Time</p>
<p>Shipping Cost</p>
</div>
<div id="mid3inner2">
<p><span><input type="checkbox"></span>Add Shipping Insurance to your order<span id="black">₹ 688.88</span></p>
<p>*Note: The time mentioned above are the shipping days by couriers, not including the order processing days by our warehouse.</p>
</div>
</div>
</div>
<div id="mid4">
<div id="mid4innerbox">
<div id="mid4innerboxleft">
<p>Coupon:</p>
<div>
<input type="text" placeholder="Please Choose or enter your coupon code">
<button>Apply</button>
</div>
</div>
<div id="mid4innerboxright">
<div>
<p>Order Subtotal:</p>
<p>₹<span id="subtotal">0.00</span></p>
</div>
<div>
<p>Shipping Cost :</p>
<p>₹<span id="shipping">0.00</span></p>
</div>
<div>
<p>Grand Total :</p>
<p >₹<span id="grandtotal">0.00</span></p>
</div>
<button onclick = "place()">Place Your Order</button>
</div>
</div>
</div>
</div>
<div id="bottom">
<img src="./Images/companies footer.PNG" alt="">
<p>© 2012-2022 Geekbuying.com. All rights reserved.</p>
</div>
</body>
</html>
<script src="./Scripts/checkoutconfirmation.js"></script>