-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
217 lines (154 loc) · 8.24 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
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
<!DOCTYPE html>
<html lang="no">
<head>
<meta name="viewport" content="width=device-width">
<title>Rainydays - Checkout</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="checkout-container">
<section id="nav" class="nav">
<a href="productlist.html?id=16">Men</a>
<a href="productlist.html?id=16">Women</a>
<a href="index.html" id="mobile-menu-logo"><img alt="rainydays logo" src="images/logo/rainydays_Logo_white_190.png"></a>
<a href="productlist.html?id=16">Kids</a>
<a href="productlist.html?id=16">Accesories</a>
<a href="#" onclick="displayhamburger()" id="mobile-menu-icon"><span class="material-icons">
menu</span>
</a>
</section>
<section class="nav mobile-nav" id="mobile-nav">
<a href="./index.html">Home</a>
<a href="productlist.html?id=16">Men</a>
<a href="productlist.html?id=16">Women</a>
<a href="productlist.html?id=16">Kids</a>
<a href="productlist.html?id=16">Accesories</a>
<a href="./customerservice.html">Customer support</a>
</section>
<section class="checkout-section">
<div class="checkout-col1">
<h1>Checkout Order #34</h1>
<p>Enter you information in the form below to complete your purchase:</p>
</div>
<form class="checkout-section-form" id="checkout-form" method="POST">
<div class="checkout-col2">
<h2 class="product-description-title text-darker">Shipping details</h2>
<label for="first-name">First name</label>
<span class="form-notice" id="firstnameError">
Enter a first name (minimum 2 characters).
</span>
<input class="checkout-input" id="firstname" name="first-name" type="text" placeholder="First name">
<label for="last-name">Last name</label>
<span class="form-notice" id="lastnameError">
Enter a last name (minimum 2 characters).
</span>
<input class="checkout-input" name="last-name" id="lastname" type="text" placeholder="Last name">
<label for="adress">Adress</label>
<span class="form-notice" id="addressError">
Enter a valid address (minimum 2 characters).
</span>
<input class="checkout-input" name="address" id="address" type="text" placeholder="Address">
<label for="zip">Zip code</label>
<span class="form-notice" id="zipError">
Enter a zipcode (4 numbers eg. 1232).
</span>
<input class="checkout-input" name="zip" id="zip" type="number" placeholder="Zipcode">
<label for="email">E-mail</label>
<span class="form-notice" id="emailError">
Enter a valid email address (eg. [email protected]).
</span>
<input class="checkout-input" name="email" id="email" type="text" placeholder="E-mail">
<label for="phone">Phone</label>
<span class="form-notice" id="phoneError">
Enter a valid phone number (8 characters eg. 99944777).
</span>
<input class="checkout-input" name="phone" id="phone" type="number" placeholder="Phone">
</div>
<div class="checkout-col3">
<h2 class="product-description-title text-light">Order overview</h2>
<div class="checkout-product-box">
<img src="./images/products/vestergapet/vestergapet45-s.jpg"> <p>Vestergapen Rain coat - Size: M - 999,-</p>
<hr style="width:100%;">
<p>Shipping: 49,-<br>
Total: 1048,-</p>
</div>
<div class="checkout-payment-box">
<p class="full-width">Payment options</p>
<span class="checkout-radio">
<input type="radio" id="card" name="payment" value="card" checked>
<label for="card">Pay with credit card</label>
</span>
<span class="checkout-radio">
<input type="radio" id="vipps" name="payment" value="vipps">
<label for="vipps">Use Vipps on your phone</label>
</span>
<span class="checkout-radio">
<input type="radio" id="paypal" name="payment" value="paypal">
<label for="paypal">Or PayPal on your computer</label>
</span>
</div>
<div class="checkout-payment-box">
<p class="full-width">Shipping options</p>
<span class="checkout-radio">
<input type="radio" id="bring" name="shipping" value="bring" checked>
<label for="bring">Bring is the best choice</label>
</span>
<span class="checkout-radio">
<input type="radio" id="express" name="shipping" value="express">
<label for="express">Express delivers next-day</label>
</span>
<span class="checkout-radio">
<input type="radio" id="pickup" name="shipping" value="pickup">
<label for="pickup">Pick-up at one of our stores</label>
</span>
<p class="full-width padding-all-1">Shipping: 49,-<br>
Total: 1048,-</p>
</div>
<a href="./success.html" class="button-wide">Confirm order</a>
</div>
</div>
</form>
</section>
<section class="footer-section">
<div class="footer-child-left">
<h3>Usefull links</h3>
<p>Highly durable waterproof membrane ensures breathable protection against any weather</p>
<a class="footer-link" href="./about.html">About us</a>
<a class="footer-link" href="./customerservice.html">Customer support</a>
<a class="footer-link" href="./terms.html">Terms and conditions</a>
</div>
<div class="footer-child-center">
<h3>#RAINYDAYS</h3>
<p>Tag your instagram experience</p>
<div class="insta-container">
<img alt="Raincoat image by" src="./images/instagram/instashots1-s.jpg">
<img alt="Rain image by" src="./images/instagram/instashots2-s.jpg">
<img alt="Image by Luca Massimilian" src="./images/instagram/instashots3-s.jpg">
<img alt="Image by Victor xok" src="./images/instagram/instashots4-s.jpg">
<img alt="Image by Jakub kriz" src="./images/instagram/instashots5-s.jpg">
<img alt="Image by Jonny Caspari" src="./images/instagram/instashots6-s.jpg">
</div>
</div>
<div class="footer-child-right text-shadow">
<h3>About us</h3>
<p>Situated in the heart of Norway we
know bad weather!
In 2008 we made a promise to keep
our customers dry in every situation.
All of our products are tested in real
weather and we guarantee that our
products will satisfy our customers</p>
<a class="footer-link" href="./about.html">Read more</a>
</div>
<div class="footer-child-bottom text-shadow">
</div>
</section>
</div>
<script src="js/main.js"></script>
<script src="js/validatecart.js"></script>
</body>
</html>