-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
263 lines (254 loc) · 12.3 KB
/
profile.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Montserrat:300,400,600,700" rel="stylesheet" />
<link rel="stylesheet" href="scss/style.css" />
<script src="js/library/jquery-1.12.4.min.js"></script>
<title>User Dashboard</title>
</head>
<body>
<header class="header">
<div class="container">
<a href="/index.html">
<img src="images/servicenow-header-logo.svg" class="brand-logo" />
</a>
<a href="#" class="fl-right btn-logout">
<i class="fa fa-sign-out" aria-hidden="true"></i> Logout</a>
</div>
</header>
<div class="container">
<div class="unAuth-message">
<a href="/index.html">Please Signin to Access your profile</a>
</div>
<div class="user-profile inner-profile">
<div class="user-picture">
<span class="user-picture-inner">
<i class="fa fa-user-circle" aria-hidden="true"></i>
</span>
</div>
<div class="user-details">
<h3 class="user-name">
<a href="/index.html">Hello USER</a>
</h3>
<h4 class="user-profession text-center">Cloth Wholeseller</h4>
<p class="user-description text-sm text-center">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s,</p>
</div>
<div class="clearfix box-features-outer">
<div class="box-container col-2 box-features">
<i class="ic-money fa fa-money fl" aria-hidden="true"></i>
<div class="feature-details">
<span>$20,000</span>
<small>Total Earnings</small>
</div>
</div>
<div class="box-container col-2 box-features">
<i class="fa fa-cart-plus ic-products" aria-hidden="true"></i>
<div class="feature-details">
<span>1000</span>
<small>Total Items</small>
</div>
</div>
<div class="box-container col-2 box-features">
<i class="fa fa-users ic-users" aria-hidden="true"></i>
<div class="feature-details">
<span>700</span>
<small>Total Clients</small>
</div>
</div>
<div class="box-container col-2 box-features">
<i class="fa fa-heart ic-followers" aria-hidden="true"></i>
<div class="feature-details">
<span>300</span>
<small>Followers</small>
</div>
</div>
</div>
</div>
<div class="table-container">
<h3>Product List</h3>
<div class="">
<button id="bulk-delete-rows" disabled class="btn btn-sm btn-secondary">Delete Selected</button>
<div class="cont-density" title="Adjust Display Density">
<span class="density-level-1">
<i class="fa fa-bars" aria-hidden="true"></i>
</span>
<span class="density-level-2">
<i class="fa fa-align-justify" aria-hidden="true"></i>
</span>
</div>
</div>
<ul id="product-table" class="table-grid table-content">
<li class="table-head">
<div>
<span class="table-col" data-order="dsc" data-column="1">
<input type="checkbox" id="master-checkbox" />
<small class="trigger-resize"></small>
</span>
<span class="table-col js-sortable" data-order="dsc" data-column="2">#
<small class="js-sort">
<em class="fa fa-sort" aria-hidden="true"></em>
</small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
<small class="trigger-resize"></small>
</span>
<span class="table-col js-sortable" data-order="asc" data-column="3">Name
<small class="js-sort">
<em class="fa fa-sort" aria-hidden="true"></em>
</small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
<small class="trigger-resize"></small>
</span>
<span class="table-col js-sortable" data-order="asc" data-column="4">Code
<small class="js-sort">
<em class="fa fa-sort" aria-hidden="true"></em>
</small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
<small class="trigger-resize"></small>
</span>
<span class="table-col js-sortable" data-order="asc" data-column="5">Size
<small class="js-sort">
<em class="fa fa-sort" aria-hidden="true"></em>
</small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
<small class="trigger-resize"></small>
</span>
<span class="table-col js-sortable" data-order="asc" data-column="6">Price
<small class="js-sort">
<em class="fa fa-sort" aria-hidden="true"></em>
</small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
<small class="trigger-resize"></small>
</span>
<span class="table-col js-sortable" data-order="asc" data-column="7">Color
<small class="js-sort">
<em class="fa fa-sort" aria-hidden="true"></em>
</small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
<small class="trigger-resize"></small>
</span>
<span class="table-col js-sortable" data-order="asc" data-column="8">Available
<small class="js-sort">
<em class="fa fa-sort" aria-hidden="true"></em>
</small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
<small class="trigger-resize"></small>
</span>
<span class="table-col" data-order="asc" data-column="9">#
<small class="trigger-resize"></small>
<small class="js-delete ic-delete">
<i class="fa fa-trash-o" aria-hidden="true"></i>
</small>
</span>
</div>
</li>
<li class="table-body">
<!-- Data will be appended by table.js using db.json -->
</li>
<li class="table-footer">
<a id="addProduct" href="javascript:void(0)" class="btn btn-secondary">Add New Product</a>
</li>
</ul>
</div>
</div>
<div id="addProduct-modal" class="modal" style="display: none">
<div class="container clearfix">
<div class="modal-head">
<a href="javascript:void(0)" class="close">
<i class="fa fa-close"></i>
</a>
<h3 class="text-center">
Add Product to Market
</h3>
</div>
<form>
<div class="container-add-left">
<div class="img-uploader-outer">
<label>Upload Photo</label>
<div class="img-uploader">
<div>
<i class="fa fa-upload" aria-hidden="true"></i>
</div>
<small>(Click to upload)</small>
</div>
</div>
<div class="img-placeholder">
<img src="images/product_placeholder.jpg" alt="product placeholder" />
</div>
<div class="form-group">
<label for="product-detail">Add Product Details</label>
<textarea id="product-detail" class="form-control" placeholder="">
</textarea>
</div>
</div>
<div class="container-add-right">
<div class="form-group">
<label for="productName">Name of Product</label>
<input id="productName" class="form-control" type="text" value="" />
</div>
<div class="form-group">
<label for="productPrice">Price($)</label>
<input id="productPrice" class="form-control" type="text" value="" />
</div>
<div class="form-group">
<label>Category</label>
<select class="form-control">
<option>Child</option>
<option>Mens</option>
<option>Girls</option>
</select>
</div>
<div class="form-group label-inline">
<label class="font-semi-bold">Sizes Available: </label>
<label class="checkbox">
<input type="checkbox" /> XS</label>
<label class="checkbox">
<input type="checkbox" /> S</label>
<label class="checkbox">
<input type="checkbox" /> M</label>
<label class="checkbox">
<input type="checkbox" /> L</label>
<label class="checkbox">
<input type="checkbox" /> XL</label>
<label class="checkbox">
<input type="checkbox" /> XXL</label>
</div>
<div>
<button type="submit" class="btn btn-block btn-primary">Add Product</button>
</div>
</div>
</form>
</div>
</div>
<div class="overlay"></div>
<script src="js/app/app.user.js"></script>
<script src="js/app/app.common.js"></script>
<script src="js/app/app.grids.js"></script>
<script>
$(document).ready(function () {
APP.common.init();
APP.user.init();
APP.grid.init();
})
</script>
</body>
</html>