forked from Khalid-R-Salis/-e-gona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbilling.html
236 lines (214 loc) · 7.61 KB
/
billing.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
235
236
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Egona</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="dict/styles.css" />
</head>
<body class="">
<h2 class="font-bold font-body text-[30px] mx-28 mt-10">Billing Details</h2>
<div class="flex justify-around items-start mx-8 my-4 mb-24">
<form action="get">
<div class="mb-8">
<p class="mb-1">First Name*</p>
<input
type="text"
name="first_name"
class="bg-input_color p-2 rounded-sm focus:outline-none w-[20rem]"
required
/>
</div>
<div class="mb-8">
<p class="mb-1">Company Name</p>
<input
type="text"
name="company_name"
required
class="bg-input_color p-2 rounded-sm focus:outline-none w-[20rem]"
/>
</div>
<div class="mb-8">
<p class="mb-1">Street Address*</p>
<input
type="text"
name="street_address"
class="bg-input_color p-2 rounded-sm focus:outline-none w-[20rem]"
required
/>
</div>
<div class="mb-8">
<p class="mb-1">Apartment, floor, etc. (optional)</p>
<input
type="text"
name="apartment"
class="bg-input_color p-2 rounded-sm focus:outline-none w-[20rem]"
/>
</div>
<div class="mb-8">
<p class="mb-1">Town/City*</p>
<input
type="text"
name="city"
class="bg-input_color p-2 rounded-sm focus:outline-none w-[20rem]"
required
/>
</div>
<div class="mb-8">
<p class="mb-1">Phone Number*</p>
<input
type="text"
name="phone"
class="bg-input_color p-2 rounded-sm focus:outline-none w-[20rem]"
required
/>
</div>
<div class="mb-1">
<p class="mb-1">Email Address*</p>
<input
type="email"
name="email"
class="bg-input_color p-2 rounded-sm focus:outline-none w-[20rem]"
required
/>
</div>
<div class="flex justify-center items-center align-middle gap-1 mt-3">
<input type="checkbox" name="check" />
<p>Save this information for faster check-out next time</p>
</div>
</form>
<!-- form-side -->
<div class="">
<div class="flex justify-between items-center mb-6">
<div class="flex justify-center items-center gap-3">
<img class="h-[50px] rounded-lg" src="images/tmt.jpg" alt="" />
<p>Tomato</p>
</div>
<p>650 naira</p>
</div>
<div class="flex justify-between items-center mb-6">
<div class="flex justify-center items-center gap-3">
<img class="h-[50px] rounded-lg" src="images/onn.jpg" alt="" />
<p>Onion</p>
</div>
<p>650 Naira</p>
</div>
<div class="flex justify-between items-center pb-4 border-b-[2px]">
<p>Subtotal:</p>
<p>1,300 naira</p>
</div>
<div class="mt-3 flex justify-between items-center pb-4 border-b-[2px]">
<p>Shipping:</p>
<p>Free</p>
</div>
<div class="mt-3 flex justify-between items-center pb-4 border-b-[2px]">
<p>Total:</p>
<p>1,300 naira</p>
</div>
<div class="mt-10 mb-1 flex justify-between items-center">
<div class="flex justify-center gap-2">
<input type="radio" name="payment_method" />
<p>Bank</p>
</div>
<div class="flex items-center justify-center gap-2">
<img src="images/i-1.svg" alt="" />
<img src="images/i-2.svg" alt="" />
<img src="images/1-3.svg" alt="" />
</div>
</div>
<div class="mb-4 flex justify-start items-center gap-2">
<input type="radio" name="payment_method" />
<p>Cash on delivery</p>
</div>
<div class="flex justify-center items-center gap-8">
<input
type="text"
name="Coupon"
class="pl-4 pr-32 py-1 border-2 rounded-md outline-none"
value="Coupon Code: "
readonly
/>
<button
class="px-5 py-[5px] w-36 bg-green-600 align-middle rounded-md text-white"
>
Apply Coupon
</button>
</div>
<button
class="mt-7 px-5 py-1.5 w-36 bg-green-600 align-middle rounded-md text-white"
>
Place Order
</button>
</div>
</div>
<footer class="bg-footer_color h-80 flex items-center content-center">
<div class="text-white font-body w-full flex justify-evenly">
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Exclusive</h1>
<h2 class="pb-3 text-[15px]">Subscribe</h2>
<p class="pb-3 text-[13px]">Get 10% off your first order</p>
<div
class="flex items-center content-center gap-5 border-2 border-stone-50 rounded-md py-1 px-2"
>
<p class="text-[13px] text-slate-200">Enter your email</p>
<img src="images/icon-send.svg" alt="" />
</div>
</div>
<div class="w-60">
<h1 class="pb-3 font-medium text-[20px]">Support</h1>
<h2 class="pb-3 text-[15px]">
111 Teen Business Compulex, Nhub Nigeria, Jos, Plateau State.
</h2>
<p class="pb-3 text-[13px]">[email protected]</p>
<p class="pb-3 text-[13px]">+234 8085499803</p>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Account</h1>
<h2 class="pb-3 text-[15px]">My Account</h2>
<h2 class="pb-3 text-[15px]">Login / Register</h2>
<h2 class="pb-3 text-[15px]">Cart</h2>
<h2 class="pb-3 text-[15px]">Wishlist</h2>
<h2 class="pb-3 text-[15px]">Shop</h2>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Quick Link</h1>
<h2 class="pb-3 text-[15px]">Privacy Policy</h2>
<h2 class="pb-3 text-[15px]">Terms Of Use</h2>
<h2 class="pb-3 text-[15px]">FAQ</h2>
<h2 class="pb-3 text-[15px]">Contact</h2>
</div>
<div class="">
<h1 class="pb-3 font-medium text-[20px]">Download App</h1>
<h2 class="pb-3 text-[15px]">
Save 1,000 naira with App New User Only
</h2>
<div class="pb-3 flex gap-3 justify-start items-center">
<div>
<img src="images/Qrcode 1.png" alt="" />
</div>
<div>
<img class="mb-2" src="images/googleplay.png" alt="" />
<img src="images/appplay.png" alt="" />
</div>
</div>
<div class="flex gap-5">
<img src="images/facebbok.svg" alt="" />
<img src="images/twitter.svg" alt="" />
<img src="images/insta.svg" alt="" />
<img src="images/linkin.svg" alt="" />
</div>
</div>
</div>
</footer>
<p
class="flex justify-center items-center text-white py-3 bg-footer_color border-t-2 border-white"
>
© Copyright e-gona 2022. All right reserved
</p>
</body>
</html>