-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.php
373 lines (351 loc) · 18.3 KB
/
ui.php
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<?php require('header.php'); ?>
<div>
<ul class="breadcrumb">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">UI Features</a>
</li>
</ul>
</div>
<div class="row">
<div class="box col-md-12">
<div class="box-inner">
<div class="box-header well" data-original-title="">
<h2><i class="glyphicon glyphicon-plus"></i> Extended Elements</h2>
<div class="box-icon">
<a href="#" class="btn btn-setting btn-round btn-default"><i
class="glyphicon glyphicon-cog"></i></a>
<a href="#" class="btn btn-minimize btn-round btn-default"><i
class="glyphicon glyphicon-chevron-up"></i></a>
<a href="#" class="btn btn-close btn-round btn-default"><i
class="glyphicon glyphicon-remove"></i></a>
</div>
</div>
<div class="box-content">
<table class="table table-bordered table-striped responsive">
<tbody>
<tr>
<td><h3>Multiple File Upload</h3></td>
<td>
<input data-no-uniform="true" type="file" name="file_upload" id="file_upload">
</td>
<td></td>
</tr>
<tr>
<td><h3>CSS3 Animations</h3></td>
<td>
<h3 class="animated rubberBand">Animation</h3>
</td>
<td>
<code><h3 class="animated rubberBand">Animation</h3></code>
<br>
For all more animation classes like <code>rubberBand</code>, please refer to
<a target="_blank" href="http://daneden.github.io/animate.css/">http://daneden.github.io/animate.css/</a>
</td>
</tr>
<tr>
<td><h3>Star Rating</h3></td>
<td>
<div class="raty"></div>
</td>
<td><code><div class="raty"></div></code></td>
</tr>
<tr>
<td><h3>Toggle Switch</h3></td>
<td>
<input data-no-uniform="true" checked="" type="checkbox" class="iphone-toggle">
</td>
<td><code><input data-no-uniform="true" type="checkbox" class="iphone-toggle"></code></td>
</tr>
<tr>
<td><h3>Auto Growing Textarea</h3></td>
<td>
<textarea class="autogrow">Press enter here, it will grow automatically.</textarea>
</td>
<td><code><textarea class="autogrow"></textarea></code></td>
</tr>
<tr>
<td><h3>Popover</h3></td>
<td>
<a href="#" class="btn btn-danger" data-toggle="popover"
data-content="And here's some amazing content. It's very engaging. right?"
title="A Title">Click for popover</a>
</td>
<td><code><a href="#" class="btn btn-danger" data-toggle="popover" data-content="And here's
some amazing content. It's very engaging. right?" title="A Title">hover for popover</a></code>
</td>
</tr>
<tr>
<td><h3>Dialog</h3></td>
<td>
<a href="#" class="btn btn-info btn-setting">Click for dialog</a>
</td>
<td></td>
</tr>
<tr>
<td><h3>Tooltip</h3></td>
<td>
<a href="#" title="Tooltip, you can change the position." data-toggle="tooltip"
class="btn btn-warning">Hover for tooltip</a>
</td>
<td><code><a href="#" title="Tooltip, you can change the position, for example use
data-placement="left"." data-toggle="tooltip" class="btn btn-warning">Hover for
tooltip</a></code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--/span-->
</div><!--/row-->
<div class="row">
<div class="box col-md-6">
<div class="box-inner">
<div class="box-header well" data-original-title="">
<h2><i class="glyphicon glyphicon-tasks"></i> Progress Bars</h2>
<div class="box-icon">
<a href="#" class="btn btn-setting btn-round btn-default"><i
class="glyphicon glyphicon-cog"></i></a>
<a href="#" class="btn btn-minimize btn-round btn-default"><i
class="glyphicon glyphicon-chevron-up"></i></a>
<a href="#" class="btn btn-close btn-round btn-default"><i
class="glyphicon glyphicon-remove"></i></a>
</div>
</div>
<div class="box-content">
<h3>Basic</h3>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0"
aria-valuemax="100" style="width: 60%;">
60%
</div>
</div>
<h3>Animated</h3>
<div class="progress progress-striped progress-success active">
<div class="progress-bar" style="width: 50%;"></div>
</div>
<h3>Additional Colors</h3>
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped" role="progressbar"
aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-info progress-bar-striped" role="progressbar"
aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
<span class="sr-only">20% Complete</span>
</div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-warning progress-bar-striped" role="progressbar"
aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
<span class="sr-only">60% Complete (warning)</span>
</div>
</div>
<div class="progress">
<div class="progress-bar progress-bar-danger progress-bar-striped" role="progressbar"
aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
<span class="sr-only">80% Complete (danger)</span>
</div>
</div>
</div>
</div>
</div>
<!--/span-->
<div class="box col-md-6">
<div class="box-inner">
<div class="box-header well">
<h2><i class="glyphicon glyphicon-eye-open"></i> Labels and Annotations</h2>
<div class="box-icon">
<a href="#" class="btn btn-setting btn-round btn-default"><i
class="glyphicon glyphicon-cog"></i></a>
<a href="#" class="btn btn-minimize btn-round btn-default"><i
class="glyphicon glyphicon-chevron-up"></i></a>
<a href="#" class="btn btn-close btn-round btn-default"><i
class="glyphicon glyphicon-remove"></i></a>
</div>
</div>
<div class="box-content">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Labels</th>
<th>Markup</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="label-default label">Default</span>
</td>
<td>
<code><span class="label">Default</span></code>
</td>
</tr>
<tr>
<td>
<span class="label-success label label-default">Success</span>
</td>
<td>
<code><span class="label label-success">Success</span></code>
</td>
</tr>
<tr>
<td>
<span class="label-warning label label-default">Warning</span>
</td>
<td>
<code><span class="label label-warning">Warning</span></code>
</td>
</tr>
<tr>
<td>
<span class="label-default label label-danger">Important</span>
</td>
<td>
<code><span class="label label-important">Important</span></code>
</td>
</tr>
<tr>
<td>
<span class="label-info label label-default">Info</span>
</td>
<td>
<code><span class="label label-info">Info</span></code>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!--/span-->
</div><!--/row-->
<div class="row">
<div class="box col-md-5">
<div class="box-inner">
<div class="box-header well">
<h2><i class="glyphicon glyphicon-bullhorn"></i> Alerts</h2>
<div class="box-icon">
<a href="#" class="btn btn-setting btn-round btn-default"><i
class="glyphicon glyphicon-cog"></i></a>
<a href="#" class="btn btn-minimize btn-round btn-default"><i
class="glyphicon glyphicon-chevron-up"></i></a>
<a href="#" class="btn btn-close btn-round btn-default"><i
class="glyphicon glyphicon-remove"></i></a>
</div>
</div>
<div class="box-content alerts">
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Oh snap!</strong> Change a few things up and try submitting again.
</div>
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Well done!</strong> You successfully read this important alert message.
</div>
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
</div>
</div>
</div>
</div>
<!--/span-->
<div class="box col-md-7">
<div class="box-inner">
<div class="box-header well" data-original-title="">
<h2><i class="glyphicon glyphicon-bell"></i> Notifications</h2>
<div class="box-icon">
<a href="#" class="btn btn-setting btn-round btn-default"><i
class="glyphicon glyphicon-cog"></i></a>
<a href="#" class="btn btn-minimize btn-round btn-default"><i
class="glyphicon glyphicon-chevron-up"></i></a>
<a href="#" class="btn btn-close btn-round btn-default"><i
class="glyphicon glyphicon-remove"></i></a>
</div>
</div>
<div class="box-content">
<div class="alert alert-info">
Click buttons below to see Pop Notifications.
</div>
<p class="center">
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is a success notification","layout":"topLeft","type":"success"}">
<i class="glyphicon glyphicon-bell icon-white"></i> Top Left
</button>
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is an alert notification with fade effect","layout":"topCenter","type":"alert","animateOpen": {"opacity": "show"}}">
<i class="glyphicon glyphicon-bell icon-white"></i> Top Center (fade)
</button>
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is an error notification","layout":"topRight","type":"error"}">
<i class="glyphicon glyphicon-bell icon-white"></i> Top Right
</button>
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is a success information","layout":"top","type":"information"}">
<i class="glyphicon glyphicon-bell icon-white"></i> Top Full Width
</button>
</p>
<p class="center">
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is an alert notification with fade effect","layout":"center","type":"alert","animateOpen": {"opacity": "show"}}">
<i class="glyphicon glyphicon-bell icon-white"></i> Center (fade)
</button>
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is an error notification","layout":"center","type":"error"}">
<i class="glyphicon glyphicon-bell icon-white"></i> Center
</button>
</p>
<p class="center">
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is an error notification","layout":"bottomLeft","type":"error"}">
<i class="glyphicon glyphicon-bell icon-white"></i> Bottom Left
</button>
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is an alert notification with fade effect","layout":"bottomRight","type":"alert","animateOpen": {"opacity": "show"}}">
<i class="glyphicon glyphicon-bell icon-white"></i> Bottom Right (fade)
</button>
</p>
<p class="center">
<button class="btn btn-primary noty"
data-noty-options="{"text":"This is an alert","layout":"bottom","type":"alert","closeButton":"true"}">
<i class="glyphicon glyphicon-bell icon-white"></i> Bottom Full Width with Close Button
</button>
</p>
</div>
</div>
</div>
<!--/span-->
<div class="box col-md-7">
<div class="box-inner">
<div class="box-header well" data-original-title="">
<h2><i class="glyphicon glyphicon-refresh"></i> Ajax Loaders</h2>
<div class="box-icon">
<a href="#" class="btn btn-setting btn-round btn-default"><i
class="glyphicon glyphicon-cog"></i></a>
<a href="#" class="btn btn-minimize btn-round btn-default"><i
class="glyphicon glyphicon-chevron-up"></i></a>
<a href="#" class="btn btn-close btn-round btn-default"><i
class="glyphicon glyphicon-remove"></i></a>
</div>
</div>
<div class="box-content">
<ul class="ajax-loaders">
<?php for ($i = 1; $i <= 8; $i++) { ?>
<li><img src="img/ajax-loaders/ajax-loader-<?php echo $i ?>.gif"
title="img/ajax-loaders/ajax-loader-<?php echo $i ?>.gif"></li>
<?php } ?>
</ul>
<span class="clearfix">From / More <a href="http://ajaxload.info/"
target="_blank">http://ajaxload.info/</a></span>
</div>
</div>
</div>
<!--/span-->
</div><!--/row-->
<?php require('footer.php'); ?>