-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_product.html
222 lines (222 loc) · 9.58 KB
/
add_product.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
<!DOCTYPE html>
<html>
<head>
<title>Add product</title>
<link rel="stylesheet" href="css/reset.css"/>
<link rel="stylesheet" href="css/fonts.css"/>
<link rel="stylesheet" href="css/default.css"/>
<link rel="stylesheet" href="css/jcf_aqua.css"/>
<link rel="stylesheet" href="css/jquery-ui-1.10.3.custom.css"/>
<script src="js/jquery.js"></script>
<script src="js/jquery-ui-1.10.3.custom.min.js"></script>
<script src="js/jcf.js"></script>
<script src="js/jcf.select.js"></script>
<script src="js/slyder.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
$(document).ready(function(){
homeEvents.chooseLang();
homeEvents.checkLettersCount('#title', '#for_title');
homeEvents.checkLettersCount('#desc', '#for_desc');
});
</script>
</head>
<body>
<div id="wrapper">
<header class="with_opacity">
<div id="head" class="align_container">
<a href="index.html"><img src="img/logo.png" alt="Logo" class="vert_align"/></a>
<div class="vert_align lang"> <span class="lang_chosen">EN</span><span class="lang_arrow">▾</span>
<ul class="choose_lang" style="display: none">
<li>EN</li>
<li>FR</li>
</ul>
</div>
<div class="notifications vert_align" style="display: none">Notifications</div>
<div class="favorites vert_align" style="display: none"><span class="favor_click">Favorites</span> <span class="favor_numbers"></span>
<div class="tip favorite_tip" style="display: none">
<img src="img/favorite_pic.jpg" alt="favorite"/>
Prototyping A Practitioner’s Guide
<p class="favor_price">$ 54.99</p>
</div>
</div>
<div id="login_link">
<p class="add_prod_label">Add product to iSalg</p>
</div>
</div>
</header>
<div class="line light" style="height: 9px"></div>
<div id="container" class="align_container prod_form smaller_opacity" style="padding: 0 15px">
<div class="bottom_bord">
<table>
<tr>
<td>
<label>Choose category</label>
</td>
<td class="input aqua">
<select name="sort">
<option value="books">Books</option>
<option value="laptops">LapTops</option>
</select>
</td>
</tr>
<tr>
<td>
<label>Choose subcategory</label>
</td>
<td class="input aqua">
<select name="sort">
<option value="design">Design</option>
<option value="behavior">Behavior</option>
</select>
</td>
</tr>
<tr>
<td class="horiz_align_center letters_count" colspan="2">
<label for="title">Title*</label>
<input type="text" id="title" class="prod_input" style="width: 485px; height: 35px" maxlength="20"/>
<span class="letters" style="top: 55px; left: 280px;"><span id="for_title">20</span> signs left</span>
</td>
</tr>
</table>
</div>
<div class="bottom_bord">
<table>
<tr>
<td>
<label>Edition</label>
</td>
<td class="input aqua">
<select name="sort">
<option value="date">1st edition</option>
<option value="price">2nd edition</option>
</select>
</td>
</tr>
<tr>
<td>
<label for="author">Author</label>
</td>
<td class="input align_left">
<input type="text" id="author" class="prod_input full_width"/>
</td>
</tr>
<tr>
<td>
<label for="id">ISBN-13</label>
</td>
<td class="input align_left">
<input type="text" id="id" class="prod_input full_width"/>
</td>
</tr>
<tr>
<td></td>
<td class="input check">
<input type="checkbox" checked hidden id="used"><label for="used">Used</label>
</td>
</tr>
<tr>
<td></td>
<td class="input check">
<input type="checkbox" checked hidden id="marked"><label for="marked">Marked</label>
</td>
</tr>
<tr>
<td></td>
<td class="input check">
<input type="checkbox" checked hidden id="shipping"><label for="shipping">Shipping</label>
</td>
</tr>
<tr>
<td colspan="2" class="horiz_align_center letters_count" style="padding-right: 60px;">
<label for="desc" class="vert_align_top">Description* </label>
<textarea name="desc" id="desc" rows="5" style="width: 485px" maxlength="180"></textarea>
<span class="letters" style="top: 110px; left: 270px;"><span id="for_desc">180</span> signs left</span>
</td>
</tr>
<tr>
<td>
<label>Price*</label>
</td>
<td class="input aqua align_left" id="prod_currency">
<input type="text" id="price" class="prod_input" style="min-width: 100px; width: 100px;" placeholder="1030.99"/>
<select name="sort">
<option value="date">GPB</option>
<option value="price">DMP</option>
</select>
</td>
</tr>
</table>
</div>
<div class="bottom_bord">
<table>
<tr>
<td class="horiz_align_right align_left" colspan="2">
<label class="vert_align_top">Add photo*</label>
<div class="block"><img src="img/add_prod1.jpg" alt=""/></div>
<div class="block"><img src="img/add_prod2.jpg" alt=""/></div>
<div class="block"><img src="img/add_prod3.jpg" alt=""/></div>
<div class="block block_for_inp">
<div class="inside_file">+</div>
<input type="file" name="file" id="file" size="1" class="input_file">
</div>
</td>
</tr>
</table>
</div>
<div class="bottom_bord">
<table>
<tr>
<td>
<label for="email">Email*</label>
</td>
<td class="input align_left">
<input type="text" id="email" class="prod_input full_width"/>
</td>
</tr>
</table>
</div>
<div class="bottom_bord">
<table>
<tr>
<td class="file align_left letters_count" colspan="2">
<label>Mobile Number*</label>
<input type="text" id="zip" class="prod_input" style="width: 72px; min-width: 72px" placeholder="X X X"/>
<span class="letters" style="top: 0px; left: 405px;">Country code</span>
<input type="text" id="phone" class="prod_input" style="width: 180px; min-width: 180px" placeholder="X X X X - X X X - X X"/>
<span class="letters" style="top: 0px; left: 535px;">Phone number</span>
</td>
</tr>
</table>
</div>
<a href="verification_page.html"><div class="button blue" id="prod_submit">Submit</div></a>
</div>
<footer>
<div class="line light"></div>
<div class="align_container">
<ul class="footer_nav">
<li><a href="#">Contact Us</a></li>
<li>|</li>
<li><a href="#">Blog</a></li>
<li>|</li>
<li id="app"><a href="#">App Site</a></li>
<li class="right">
<ul>
<li>Follow us</li>
<li><a href="#"><img src="img/google.png" alt="google"/></a></li>
<li><a href="#"><img src="img/facebook.png" alt="facebook"/></a></li>
<li><a href="#"><img src="img/twitter.png" alt="twitter"/></a></li>
</ul>
</li>
</ul>
</div>
</footer>
</div>
</body>
<script type="text/javascript">
// заменить все кастомные элементы когда страница будет загружена
jcf.lib.domReady(function(){
jcf.customForms.replaceAll();
});
</script>
</html>