forked from edmundloo/eCommerce-Site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcle_details.html
More file actions
162 lines (143 loc) · 6.16 KB
/
cle_details.html
File metadata and controls
162 lines (143 loc) · 6.16 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Edmunds Cameras</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles2.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="site">
<nav>
<div class="nav-container">
<p class="logo-link"><a href="index.html">Edmunds Cameras</a></p>
<ul>
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropbtn" onclick="showDropdown()">Products</a>
<div class="dropdown-content" id="myDropdown">
<a href="zm_details.html">Zeiss Ikon ZM</a>
<a href="m3_details.html">Leica M3</a>
<a href="m6_details.html">Leica M6</a>
<a href="cle_details.html">Minolta CLE</a>
<a href="canonet_details.html">Canon Canonet</a>
<a href="f3af_details.html">Nikon F3AF</a>
<a href="mp_details.html">Leica MP</a>
<a href="hi-matic_details.html">Minolta HI-MATIC</a>
<a href="rollei_details.html">Rollei Rolleiflex</a>
<a href="124g_details.html">Yashica-Mat 124G</a>
<a href="gw690II_details.html">Fuji GW690II</a>
<a href="500cm_details.html">Hasselblad 500CM</a>
</div>
</li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="main-wrapper">
<div class="content-wrapper">
<div class="fgrid fgrid--gutters">
<div class="fgrid-cell">
<div class="image-viewer">
<div id="image-container" class="image-viewer-thumbs">
<img src="media/camera_photos/large/Minolta-CLE-1.jpg" width="75px" height="75px">
<img src="media/camera_photos/large/Minolta-CLE-2.jpg" width="75px" height="75px">
<img src="media/camera_photos/large/Minolta-CLE-3.jpg" width="75px" height="75px">
<img src="media/camera_photos/large/Minolta-CLE-4.jpg" width="75px" height="75px">
</div>
<div class="image-viewer-image">
<img id="active-image" src="media/camera_photos/large/Minolta-CLE-1.jpg">
</div>
</div>
</div>
<div class="fgrid-cell">
<div class="product-details">
<h1 class="product-name">
CLE
</h1>
<h2 class="product-brand">
by Minolta
</h2>
<hr>
<div class="product-price">
$275
</div>
</div>
</div>
</div>
<div class="fgrid fgrid--gutters">
<div class="fgrid-cell">
<div class="product-description">
<h2 class="description-title">
Description
</h2>
<p class="description-body">
The Minolta CLE is a TTL-metering aperture-priority automatic 35mm rangefinder camera taking Leica M lenses, introduced by Minolta in 1981.
</p>
</div>
</div>
</div>
<div class="fgrid fgrid--gutters">
<div class="fgrid-cell">
<div class="detail_form">
<form action="mailto:hello@edmundscameras.com?subject=Order Confirmation" enctype="text/plain" method="post" id="details">
<fieldset>
<legend>Order Details</legend>
Product ID:
<input type="text" name="productId" value="Minolta-CLE" required><br>
Quantity:
<select name="quantity">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select><br>
First Name:
<input type="text" name="firstname" required><br>
Last Name:
<input type="text" name="lastname" required><br>
Phone:
<input type="phone" name="phone" required><br>
Credit Card Info:
<input type="radio" name="credit" value="Visa" style="width: 25px;" checked>Visa
<input type="radio" name="credit" value="Mastercard" style="width:25px;">MC
<input type="radio" name="credit" value="Amex" style="width:25px;">AMEX<br>
Card Number:
<input type="text" name="card_number" required><br>
Shipping Method:
<input type="radio" name="shipping" value="priority" style="width: 25px;" checked>Priority
<input type="radio" name="shipping" value="ups" style="width:25px;">UPS<br>
Shipping Address:
<input type="text" name="shipAddress" required><br>
Address Line 2:
<input type="text" name="addressTwo" required><br>
City:
<input type="text" name="city" required><br>
State:
<select name="state">
<option value="AL">AL</option>
<option value="CA">CA</option>
<option value="TX">TX</option>
<option value="OR">OR</option>
</select>
Zipcode:
<input name="zip" maxlength="10" width="10" style="width: 50px;" required><br>
<input type="submit" value="Submit">
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="sitemap"></div>
<p class="cpyrght">©2016 Edmund's Cameras</p>
</footer>
<script src="js/global.js"></script>
<script>
productImage();
</script>
</body>
</html>