-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
206 lines (177 loc) · 8 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" media="only screen and (max-width: 480px)" href="phone-style.css" /> <!-- phone style -->
<link rel="stylesheet" media="only screen and (min-width:481px) and (max-width:768px)" href="tablet-style.css" /> <!-- table style -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <!-- jQuery include -->
<script type="text/javascript" src="checkout.js"></script>
<script type="text/javascript" src="script.js"></script>
<title>Bezal | Checkout</title>
</head>
<body>
<div class="page">
<div class="blue-bar">
<header>
<h1><a href="index.html">Bezal</a></h1>
<div id="shopping-cart">
<a href="shopping-cart.html"><img src="resources/cart.png" alt="Shopping Cart"/></a>
</div>
<nav>
<ul>
<li><a href="collection.html">the Collection</a></li>
<li><a href="story.html">our Story</a></li>
<li><a href="community.html">the Community</a></li>
<li><a href="contact.html">contact Us</a></li>
</ul>
</nav>
</header>
<div class="description">
<h2>Checkout</h2>
<p>
Welcome to our secure online checkout process. We strive to make this process as simple and
efficient as possible. All information is transmitted using high level SSL encryption for your protection.
</p>
<p>
Bezal does not store credit card information on our servers other than the last four digits of your card number for reference. All credit card information is processed by Authorize.net using their secure payment gateway.
</p>
</div>
<footer>
<!-- social media links -->
<a href=""><img src="resources/f_icon.png" alt="Facebook" /></a>
<a href=""><img src="resources/t_icon.png" alt="Twitter" /></a>
<a href=""><img src="resources/i_icon.png" alt="Instagram" /></a>
</footer>
</div><!-- blue-bar -->
<div class="main-content">
<div class="checkout-form">
<p>Purchase as a Guest or <a href="#" id="create-account-link">Create an Account</a>.</p>
<form action="confirm-purchase.html" method="post">
<div id="checkout-create-account">
<h3>Account Information</h3>
<hr class="checkout-divider">
<fieldset>
<label for="email">Email*:</label>
<input type="email" name="email" id="email" placeholder="[email protected]" /><!-- Would actually default to the email they previously entered -->
<label for="password">Password*:</label>
<input type="password" id="password" name="password" />
<label for="confirm_password">Confirm Password*:</label>
<input type="password" id="confirm_password" name="confirm_password" />
</fieldset>
</div>
<div id="billing-info">
<h3>Billing Information</h3>
<hr class="checkout-divider">
<fieldset>
<label for="name">Name*:</label>
<input type="text" name="name" id="name" placeholder="Jane Doe" required />
<label for="email">Email*:</label>
<input type="email" name="email" id="email" placeholder="[email protected]" required />
</fieldset>
<fieldset>
<label for="address">Address*:</label>
<input type="text" name="address" id="address" required />
<label for="address2">Address 2:</label>
<input type="text" name="address2" id="address2" />
<label for="city">City*:</label>
<input type="text" name="city" id="city" required />
<label for="province">Province*:</label>
<select name="province" id="province">
<option><option>
<option value="bc">British Columbia</option>
<option value="ab">Alberta</option>
<option value="sk">Saskatchewan</option>
<option value="mb">Manitoba</option>
<option value="on">Ontarion</option>
<option value="qc">Quebec</option>
<option value="nb">New Brunswick</option>
<option value="ns">Nova Scotia</option>
<option value="nf">Newfoundland and Labrador</option>
<option value="pei">PEI</option>
<option value="yk">Yukon</option>
<option value="nwt">NWT</option>
<option value="nu">Nunavut</option>
</select>
<label for="postal">Postal Code*:</label>
<input type="text" name="postal" id="postal" required />
</fieldset>
<fieldset>
<label for="card">Card Number*:</label>
<input type="text" name="card" id="card" placeholder="xxxx-xxxx-xxxx-xxxx" required />
<label for="month">Expiry Date*:</label>
<select name="month" id="month" required>
<option></option>
<option value="1">1 - Jan</option>
<option value="2">2 - Feb</option>
<option value="3">3 - Mar</option>
<option value="4">4 - Apr</option>
<option value="5">5 - May</option>
<option value="6">6 - June</option>
<option value="7">7 - July</option>
<option value="8">8 - Aug</option>
<option value="9">9 - Sep</option>
<option value="10">10 - Oct</option>
<option value="11">11 - Nov</option>
<option value="12">12 - Dec</option>
</select>
<select name="year" id="year" required>
<option></option>
<option value="2013">2013</option>
<option value="2014">2014</option>
<option value="2015">2015</option>
<option value="2016">2016</option>
<option value="2017">2017</option>
<option value="2018">2018</option>
<option value="2019">2019</option>
<option value="2020">2020</option>
<option value="2021">2021</option>
<option value="2022">2022</option>
</select>
<label for="security-code">Security Code*:</label>
<input type="text" name="security-code" id="security-code" required />
</fieldset>
</div><!--billing-info-->
<div id="shipping-info">
<h3>Shipping Information</h3>
<hr class="checkout-divider">
<fieldset>
<label for="use-billing-address">Same as Address Above: </label> <!-- add jQuery later to make this actually do stuff -->
<input type="checkbox" id="use-billing-address" name="use-billing-address" />
</fieldset>
<fieldset>
<label for="s_address">Address*:</label>
<input type="text" name="s_address" id="s_address" required />
<label for="s_address2">Address 2:</label>
<input type="text" name="s_address2" id="s_address2" />
<label for="s_city">City*:</label>
<input type="text" name="city" id="s_city" required />
<label for="s_province">Province*:</label>
<select name="s_province" id="s_province" >
<option></option>
<option value="bc">British Columbia</option>
<option value="ab">Alberta</option>
<option value="sk">Saskatchewan</option>
<option value="mb">Manitoba</option>
<option value="on">Ontarion</option>
<option value="qc">Quebec</option>
<option value="nb">New Brunswick</option>
<option value="ns">Nova Scotia</option>
<option value="nf">Newfoundland and Labrador</option>
<option value="pei">PEI</option>
<option value="yk">Yukon</option>
<option value="nwt">NWT</option>
<option value="nu">Nunavut</option>
</select>
<label for="s_postal">Postal Code*:</label>
<input type="text" name="s_postal" id="s_postal" required />
</fieldset>
</div><!--shipping-info-->
<input type="submit" value="Confirm Purchase" />
</form>
</div><!-- checkout-form -->
</div><!-- main-content -->
</div><!-- page -->
</body>
</html>