-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
217 lines (213 loc) · 6.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Muff n' Puff</title>
<link href='http://fonts.googleapis.com/css?family=Alex+Brush|Roboto+Slab:400,100|Roboto:400,100,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="bower_components/normalize.css/normalize.css">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="loginFormWrapper" style="display: none;">
<form action="">
<label for="firstName">
<div id="labelText">
First Name:
</div>
<div id="loginFormInputWrapper">
<input class="textBox" type="text" placeholder="First Name">
</div>
</label>
<label for="lastName">
<div id="labelText">
Last Name:
</div>
<div id="loginFormInputWrapper">
<input class="textBox" type="text" placeholder="Last Name">
</div>
</label>
<label for="Email">
<div id="labelText">
Email:
</div>
<div id="loginFormInputWrapper">
<input class="textBox" type="text" placeholder="Email Address">
</div>
</label>
<label for="streetAddress">
<div id="labelText">
Street Address:
</div>
<div id="loginFormInputWrapper">
<input class="textBox" type="text" placeholder="Street Address">
</div>
</label>
<label for="city">
<div id="labelText">
City:
</div>
<div id="loginFormInputWrapper">
<input class="textBox" type="text" placeholder="City">
</div>
</label>
<label for="state">
<div id="labelText">
State:
</div>
<div id="loginFormInputWrapper">
<input class="textBox" type="text" placeholder="State">
</div>
</label>
<label for="zip">
<div id="labelText">
Zip:
</div>
<div id="loginFormInputWrapper">
<input class="textBox" type="text" placeholder="Zip">
</div>
</label>
<label id="createAcctSubmitWrapper">
<input id="createAcctSubmit" type="submit" name="submit" value="Create Account">
</label>
<label id="createAcctCancelWrapper">
<input id="createAcctCancel" type="button" name="submit" value="Cancel">
</label>
</form>
</div>
<div id="pageWrapper">
<header>
<div id="headerLeft">
<div id="headerLeftBlock">
<div id="headerLeftLogo">
<img src="images/thumbs/logo.png">
</div>
<div id="headerLeftTitle">
<h1>Muff n' Puff</h1>
</div>
</div>
</div>
<div id="headerRight">
<div id="headerRightBlock" class="activeHeaderRightBlock">
<form id="logInForm">
<div id="logInInput">
<label for="logInUsername">Username:</label>
<input type="text" name="logInUsername" id="logInUsername" placeholder="Name">
</div>
<div id="logInSubmit">
<input type="submit" id="logInSubmitButton">
</div>
<div id="createAcct">
<input type="submit" id="createAcctBtn" value="Create Account">
</div>
</form>
<div id="usernameBlock" class="hidePage">
Logged in:
</div>
</div>
<div id="headerRightBlock2">
<div id="headerRightBlock2Inner">
<div id="cartBlock">
<div id="cartBlockImage">
<i class="fa fa-shopping-cart"></i>
</div>
<div id="cartBlockAmount">
</div>
</div>
</div>
</div>
</div>
</header>
<div id="catalogPage" class="activePage">
<div id="catalogPageTitle">
<h2>Catalog</h2>
</div>
<div id="catalogPageContent">
</div>
</div>
<div id="productPage">
<!-- PRODUCT PAGE GOES HERE -->
</div>
<div id="cartPage">
<div id="cartPageTitle">
<h2>Cart</h2>
</div>
<div id="cartPageContent">
<div id="cartItemsBlock">
<!-- CART ITEMS GO HERE -->
</div>
<div id="cartInfoBlock">
<div id="cartTotalPriceBlock">
<div id="cartTotalPrice">
$59.99
</div>
</div>
<div id="cartCheckOutBlock">
<div id="cartContinue">
<button id="cartContinueShoppingButton">Continue Shopping</button>
</div>
<div id="cartClear">
<button id="cartClearButton">Clear Cart</button>
</div>
<div id="cartCheckOut">
<button id="cartCheckOutButton">Checkout</button>
</div>
</div>
</div>
</div>
</div>
<footer>
<div id="footerLeft">
<div id="footerLeftBlock">
<div id="footerLeftBlockTitle">
<h3>About Us</h3>
</div>
<div id="footerLeftBlockContent">
<p>
For over 24 hours, we have been the world's #1 online muffin and cigar emporium. We intend to continue to hold this coveted title for two, maybe even three, days. As the legendary Chef Boyardee always said, "We are definitely not a money-laundering business. Nope, not us."
</p>
</div>
</div>
</div>
<div id="footerRight">
<div id="footerRightBlock">
<div id="footerRightBlockTitle">
<h3>Contact</h3>
</div>
<div id="footerRightBlockContent">
<div class="contactBlock">
<div class="contactLabel">
Telephone:
</div>
<div class="contactInfo">
911-911-9111
</div>
</div>
<div class="contactBlock">
<div class="contactLabel">
Email:
</div>
<div class="contactInfo">
</div>
</div>
<div class="contactBlock">
<div class="contactLabel">
Address:
</div>
<div class="contactInfo">
123 Fake Street, Charleston SC 29403
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/underscore/underscore-min.js"></script>
<script src="data.js"></script>
<script src="app.js"></script>
</body>
</html>