-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout_page.html
234 lines (228 loc) · 7.55 KB
/
checkout_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
<!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 Page</title>
<link rel="stylesheet" href="./css/checkout_page.css" />
</head>
<body class="amCheckoutDark">
<div id="apeksha_amnavbar" include-html="./navbar.html">
navbar.html
</div>
<div id="amCheckout">
<div style="background-color: white;">
<form action="" id="amform">
<div>
<h3>1. Shipping Address.</h3>
<div>
<label class="requiredCheckout" class="amCheckoutlabel" for=""
>Country/Region</label
>
</div>
<div>
<select name="" id="amCountry">
<option value="India">India</option>
<option value="China">China</option>
<option value="Nepal">Nepal</option>
<option value="Bhutan">Bhutan</option>
<option value="Myanmar">Myanmar</option>
</select>
</div>
<div>
<label class="requiredCheckout" for="">First Name</label>
</div>
<div>
<input id="firstName" required type="text" />
</div>
<div>
<label class="requiredCheckout" for="">Last Name</label>
</div>
<div>
<input id="lastName" required type="text" />
</div>
<div>
<label class="requiredCheckout" for="">Zip Code/Postcode</label>
</div>
<div>
<input id="zipCode" required type="number" />
</div>
<div>
<label for="">Company Name</label>
</div>
<div>
<input id="companyName" type="text" />
</div>
<div>
<label class="requiredCheckout" for="">Address</label>
</div>
<div>
<input id="address" required type="text" />
</div>
<div>
<label for="">Address 2</label>
</div>
<div>
<input id="address2" type="text" name=""/>
</div>
<div>
<label class="requiredCheckout" for=""
>Apartment/Suite number</label
>
</div>
<div>
<input required type="number" name="" id="apartmentNumber" />
</div>
<div>
<label class="requiredCheckout" for="">Town/City</label>
</div>
<div>
<input required type="text" name="" id="city" />
</div>
<div>
<label class="requiredCheckout" for="">Contact Number</label>
</div>
<div>
<input required type="number" name="" id="mob" />
</div>
<div>
<p><a href="">Why do we need your number?</a></p>
</div>
</div>
<hr />
<div>
<h3>2. Select Delivery Option</h3>
<select name="" id="amDeliveryOption">
<option value="Free Delivery">Free Delivery</option>
<option value="Standard Delivery">Standard Delivery</option>
<option value="One-Day Delivery">One-Day Delivery</option>
</select>
</div>
<hr />
<div id="amCheckoutCard">
<h3>3. Select Payment Method</h3>
<div>
<label class="requiredCheckout" for="">Credit/Debit Card</label>
<div id="amCardImg">
<div><img src="./images/msCard.png" alt="" /></div>
<div><img src="./images/paytm.jpg" alt="" /></div>
<div><img src="./images/visa.png" alt="" /></div>
<div><img src="./images//discover.png" alt="" /></div>
</div>
</div>
<div>
<label class="requiredCheckout" for="" >Card Number</label>
</div>
<div>
<input required type="number" name="" id="cardNumber" />
</div>
<div>
<label class="requiredCheckout" for="">Name on Card</label>
</div>
<div>
<input required type="text" name="" id="cardName" />
</div>
<div>
<label class="requiredCheckout" for="">Expiry Date</label>
</div>
<div>
<input
required
class="amCheckoutCardDate"
type="number"
name=""
placeholder="MM"
id="expMonth"
/>
<input
required
class="amCheckoutCardDate"
type="number"
name=""
placeholder="YY"
id="expYrs"
/>
</div>
<div>
<label class="requiredCheckout" label for="">CVV</label>
</div>
<div>
<input
required
class="amCheckoutCardDate"
type="password"
name=""
id="cvv"
/>
</div>
</div>
<hr />
<div>
<div>
<label class="requiredCheckout" for=""
>Use a different payment method:</label
>
</div>
<div>
<select name="" id="amPaymentOption">
<option value="Pay-Pal">Pay-Pal</option>
<option value="Phone-Pay">Phone-Pay</option>
<option value="Paytm">Paytm</option>
<option value="G-pay">G-pay</option>
</select>
</div>
</div>
<hr />
<div>
<input required type="submit" id="amCheckoutBottom" />
</div>
</form>
<p class="amCheckoutCenter">
By placing this order, you are confirming that you agree to our
<a href="">Terms and Conditions</a> and <a href="">Privacy Policy</a>.
</p>
</div>
<div id="amCard">
<h4>Order Summary</h4>
<h4>Qty:</h4>
<h4>Order Number : 412262597</h4>
<div class="totalFlex">
<p>Total to pay:</p>
<p>$ <span id="amCardTota1"></span></p>
</div>
<div id="appendData">
<!-- <div class="amCardorder">
<div id="amCardImgRow">
<img
src="https://static.thcdn.com/images/xsmall/webp//productimg/1600/1600/12674550-6504833218425212.jpg"
alt=""
/>
<p>SkinMedica Instant Bright Eye Cream .07oz (Free Gift)</p>
</div>
<div>
<p>Quantity:</p>
<p id="amCardQty">1</p>
</div>
<div>
<p>Price:</p>
<p>$ <span id="amCardprice">400</span></p>
</div>
</div> -->
</div>
<hr>
<div>
<div class="totalFlex">
<p>Total to pay:</p>
<p>$ <span id="amCardTota2"></span></p>
</div>
</div>
</div>
<!-- <div id="NASbottomNavbar" include-html="./footer.html">
footer
</div> -->
</body>
</html>
<script type="module" src="./js/checkout_page.js"></script>
<script src="./js/sub_js/jquery-3.6.0.min.js"></script>
<script src="./js/sub_js/include-html.min.js"></script>