-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
289 lines (271 loc) · 14.8 KB
/
index.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!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" />
<link rel="stylesheet" type="text/css" href="./main.css" />
<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=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<script src="https://kit.fontawesome.com/bace39851e.js" crossorigin="anonymous"></script>
<script src="./script.js" defer></script>
<link rel="icon" href="./assests/images/favicon.png">
<title>Amai · Neko | Geek Drinks Store</title>
</head>
<body>
<header>
</header>
<div class='popup hide'>
<div class='toast'>
<div class='content'>
<div class='icon'><i class='uil uil-exclamation-triangle'></i> </div>
<div class='details'>
<span>You started registering <strong>2 min ago.</strong></span>
<p>Hurry up!🚀</p>
</div>
</div>
<div class='close-icon'><i class='uil uil-times'></i> </div>
</div>
</div>
<main>
<div class="logo-cat">
<a href="index.html"><img class="logo" src="" alt=""></a>
<div class="width-bar">
<div class="progress-bar">
<div class="step">
<p>Profile</p>
<div id="step_1" class="bullet">
<span>1</span>
</div>
<div class="check fas fa-check"></div>
</div>
<div class="step">
<p>Address</p>
<div id="step_2" class="bullet">
<span>2</span>
</div>
<div class="check fas fa-check"></div>
</div>
<div class="step">
<p>Shipping</p>
<div id="step_3" class="bullet">
<span>3</span>
</div>
<div class="check fas fa-check"></div>
</div>
<div id="step_4" class="step">
<p>Finish</p>
<div class="bullet">
<span>4</span>
</div>
<div class="check fas fa-check"></div>
</div>
</div>
</div>
</div>
<div class="wrapper">
<section class="main_product_left">
<div class="main_product_left_products">
<img src="./assests/images/info01.webp" alt="Ramune-info1" />
<img src="./assests/images/info02.jpg" alt="Ranume-info2" />
<img src="./assests/images/info03.jpg" alt="Ramune-info3" />
<img src="./assests/images/info04.png" alt="Ramune-info4" />
</div>
<div class="main_product_left_product"></div>
</section>
<section class="main_product_right">
<div class="product_information ">
<h1 class="title">Ramune</h1>
<p class="title_description">Strawberry Flavor</p>
<div class="products_flavors">
<img src="./assests/images/product01.png" alt="pineapple" name="Pineapple Flavor"
price="10.00 €" />
<img src="./assests/images/product02.png" alt="strawberry" name="Strawberry Flavor"
price="8.00 €" />
<img src="./assests/images/product03.png" alt="lychee" name="Lychee Flavor" price="14.00 €" />
<img src="./assests/images/product04.png" alt="yakisoba" name="Yakisoba Flavor"
price="12.00 €" />
</div>
<div class="product_information_price">
<p class="price">Price</p>
<p class="price flavorPrice">8.00 €</p>
<p class="price_description">200 ml</p>
</div>
<article class="counter">
<button id='decrement' class="decrement">-</button>
<h2 id="amount" class="amount">1</h2>
<button id='increment' class="increment">+</button>
</article>
<button id='buy_button' class="buy_button">BUY</button>
</div>
<section class="profile-form hidden">
<h2>Profile</h2>
<form id="form1" class="form">
<article class="input_text">
<input type="text" id="username" name="username" required />
<label for="username">Username</label>
<div class="error"></div>
</article>
<article class="input_text">
<input type="email" id="email" required />
<label for="email">Email</label>
<div class="error"></div>
</article>
<article class="input_text">
<input type="password" id="password" required />
<label for="password">Password</label>
<div class="error"></div>
</article>
<article class="input_text last_child_profile">
<input type="password" id="rpassword" required />
<label for="rpassword">Repeat password</label>
<div class="error"></div>
</article>
<button id="btn-resetProfile" class="btn-reset" type="reset">Clear form</button>
<button id='next_button_profile' class="btn-next next_button_form" type="submit">NEXT</button>
</form>
</section>
<section class="address-form hidden">
<h2>Address</h2>
<form id="form2" class="form">
<article class="input_text">
<input type="text" id="fname" name="fname" required />
<label for="fname">First name</label>
<div class="error"></div>
</article>
<article class="input_text">
<input type="text" id="lname" name="lname" required />
<label for="lname">Last name</label>
<div class="error"></div>
</article>
<article class="input_text">
<input type="date" id="bday" name="bday" required />
<label for="bday">Birthday</label>
<div class="error"></div>
</article>
<article class="input_text">
<input type="text" id="address1" name="address1" required />
<label for="address1">Address 1</label>
<div class="error"></div>
</article>
<article class="input_text">
<input type="text" id="address2" name="address2" />
<label for="address1">Address 2</label>
<div class="error"></div>
</article>
<article class="input_text">
<input type="text" id="posCode" name="posCode" required />
<label for="posCode">Postal Code</label>
<div class="error"></div>
</article><br>
<article class="input_select">
<select name="country" id="country" required>
<option selected disabled>Select country...</option>
<option value="andorra">Andorra</option>
<option value="spain">Spain</option>
<option value="france">France</option>
<option value="germany">Germany</option>
<option value="greece">Greece</option>
</select>
<div class="error2"></div>
</article>
<article id="" class="input_select prefix">
<select id="phCode" name="country" required>
<option value="andorra">+376 AND</option>
<option selected value="spain">+34 ESP</option>
<option value="france">+33 FRA</option>
<option value="germany">+49 DEU</option>
<option value="greece">+30 GRC</option>
</select>
<input class="phone" type="number" name="ph" id="ph" placeholder="phone number" required />
<div class="error2"></div>
</article>
<article class="checkbox">
<input type="checkbox">
<label for="regularAddress">This is my regular address</label>
</article>
<button id="btn-resetAddress" class="btn-reset" type="reset">Clear form</button>
<button id='next_button_address' class="btn-next next_button_form" type="submit">NEXT</button>
</form>
</section>
<section class="shipping-form hidden">
<h2>Shipping</h2>
<p></p>
<form class="form">
<article class="shipping-free">
<input type="radio" id="free" value="3" price="0" name="shipment"
shipping="Free Shipment" />
<label for="free">Free shipment (72h)</label>
</article>
<article class="shipping-free">
<input price="4.99" type="radio" id="extra" value="2" name="shipment"
shipping="Extra Shipment" />
<label for="extra">Extra shipment (48h) <b> +4,99€</b></label>
</article>
<article class="shipping-free">
<input price="9.99" type="radio" id="express" value="1" name="shipment"
shipping="Express Shipment" required />
<label for="express">Express shipment (24h) <b>+9,99€</b></label>
</article>
<p class="shipping-paraf hidden"><b>Your order will arrive:</b></p>
<p class="small-cap shipping-paraf hidden">ESTIMATE DELIVERY DATE:</p>
<p class="shipping-paraf rangeOfShipping hidden"></p>
<article class="shipping-free gift-check">
<input type="checkbox" id="gift-check" />
<label for="gift-check">Is it a <b>gift?</b></label>
</article>
<textarea class="gift-message" name="gift-message" id="gift-message" cols="30" rows="10"
placeholder="Gift message here ..." maxlength="200"></textarea><br>
<article class="select-image">
<input name="image" id="image" type="file" />
<label for="image">Select Image</label>
</article>
<button id="btn-resetShipping" class="btn-reset" type="reset">Clear form</button>
<button class="btn-next next_button_form" type="submit">NEXT</button>
</form>
</section>
<section class="finish hidden">
<article class="complete_order hidden">
<p class="complete_order_title">Your order is complete! 🥳</p>
<p class="complete_order_info">Thanks you for you order!</p>
</article>
<article class="order_information">
<h2>Your Purchase</h2>
<div>
<img src="" alt="" style="height: 60px" />
<div>
<p class="nameOfProduct">Name of the product</p>
<p class="priceOfProduct">Price: price of the product</p>
<p class="small-cap shipping-paraf">ESTIMATE DELIVERY DATE:</p>
<p class="shipping-paraf rangeOfDelivery">Between <b>July 21th 2022 14:00h.</b> and
<b>July 21th 2022
20:00h.</b>
</p>
</div>
</div>
<div class="terms_conditions">
<input type="checkbox" id="terms" />
<label for="terms">I have read and I accept the terms and conditions</label>
</div>
<p class="term_condition_error hidden">Please accept terms and conditions.</p>
<button id="buyNow" class="btn-next order_button" disabled>FINISH</button>
</article>
<article class="order-price">
<p class="order_price_title">Payment details:</p>
<p class="order_price_name"><b>Product name:</b> 7.8€</p>
<p class="order_price_shipping"><b>Premium Shipping: </b>12.9€</p>
<hr>
<p class="order_price_total"><b>Total:</b> 20.4€</p>
</article>
<article class="registration_time">
<p> Your registration took: <b>3 minutes and 23 seconds</b> </p>
</article>
</section>
</section>
</div>
</main>
</body>
</html>