-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
151 lines (129 loc) · 5.6 KB
/
checkout.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
<!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>Information - HOK Makeup - Checkout</title>
<link rel="shortcut icon" type="image" href="C:\Users\Ankit Mishra\Downloads\logo.png">
<link rel="stylesheet" href="./styles/checkout.css">
</head>
<body>
<div class="b1">
<div class="textc b2">
<div class="boxinr">
<img src="https://cdn.shopify.com/s/files/1/1743/7443/files/website_logo.png?36281" alt=""> <br> <br>
<div>
<spna><a href="hokcart.html" class="return_to_cart"> Cart</a></spna> > Information > Shipping >
Payment
</div>
<div class="b1">
<div class="b2 textl">
<h3>
Contact Information
</h3>
</div>
<div class="b2 textr">
Already have an account? Log in
</div>
</div>
<div>
<form>
<div>
<input type="text" placeholder="Mobile Phone Number" class="biginp" autofocus required
id="contactno.">
</div>
<div class="textl">
<input type="checkbox" value="1" autofocus required> Email me with news and offers
</div>
<br>
<div class="textl">
<h3>
Shipping Address
</h3>
</div>
<div>
<input type="text" placeholder="First Name" class="inpname" autofocus required>
<input type="text" placeholder="Last Name" class="inpname" autofocus required>
</div>
<div>
<input type="text" placeholder="Address" class="biginp" autofocus required id="address">
</div>
<div>
<input type="text" placeholder="Apartment, suite, etc (optional)" class="biginp" autofocus>
</div>
<div>
<input type="text" placeholder="City" class="biginp" autofocus>
</div>
<div>
<input type="text" placeholder="Country" class="inppin" required autofocus>
<input type="text" placeholder="State" class="inppin" required autofocus>
<input type="number" placeholder="Pin" class="inppin" minlength="6" maxlength="6" autofocus
required>
</div>
<div>
<input type="number" placeholder="Phone" class="biginp" autofocus required>
</div>
<div class="textl">
<input type="checkbox" value="1" autofocus required> Save this information for next time
</div>
<br>
<div class="b1">
<div class="b2 dwnreturn">
<a href="hokcart.html" class="return_to_cart">
< Return to cart </a>
</div>
<div class="b2 dwnbtn">
<a href="shipping.html"> <button id="inpsub" onclick="shifttoinfo()">Continue to
Shipping</button></a>
</div>
</div>
</form>
<hr id="hereis_HR">
</div>
</div>
</div>
<div class="textc b2" id="rightbox1">
<div class="boxinl">
<div id="boxright">
<br>
<br>
</div>
<br>
<hr>
<br>
<form action="">
<div>
<input type="text" placeholder="Gift card or Discount code" id="b2rcoupon">
<button id="b2rbtn">Apply</button>
</div>
</form>
<br>
<hr>
<br>
<div class="dwnreturn">
<div id="common__thingss">
<p> Subtotal </p>
<p class="dekhototal" id="dekhototal"></p>
</div>
<div id="common__thingss">
<p> Shipping </p>
<p>Calculated at next step</p>
</div>
</div>
<br>
<hr>
<br>
<div class="dwnreturn" id="common__thingss">
<div> Total
<p id="tax"></p>
</div>
<div class="dekhototal" id="dekhototal"></div>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./scripts/checkout.js">
</script>