-
Notifications
You must be signed in to change notification settings - Fork 0
/
panel_proto.php
executable file
·2041 lines (1918 loc) · 76.5 KB
/
panel_proto.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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
@session_start();
if(@$_SESSION['l031n45'] == ''){
include "redirect.php";
$go = new redirect("login.php");
die();
}
if(@$_SESSION['154dm1n']){
include "redirect.php";
$go = new redirect("cpanel.php");
die();
}
?>
<!DOCTYPE html>
<html lang="en" manifest="cache.appcache">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="University OF Eastern Africa Baraton Room Reservation, UEAB, RoomRes, The Cnnection, Iarasoft">
<meta name="keywords" content="UEAB Room Reservation, Room Reservation, Students Rooms, UEAB, Baraton">
<meta name="author" content="The Connection, Iarasoft">
<link rel="icon" href="favicon.ico">
<title>UEAB | Room Reservation - Dashboard</title>
<!-- BOOTSTRAP CSS (REQUIRED ALL PAGE)-->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- PLUGINS CSS -->
<link href="assets/plugins/weather-icon/css/weather-icons.min.css" rel="stylesheet">
<link href="assets/plugins/prettify/prettify.min.css" rel="stylesheet">
<link href="assets/plugins/magnific-popup/magnific-popup.min.css" rel="stylesheet">
<link href="assets/plugins/owl-carousel/owl.carousel.min.css" rel="stylesheet">
<link href="assets/plugins/owl-carousel/owl.theme.min.css" rel="stylesheet">
<link href="assets/plugins/owl-carousel/owl.transitions.min.css" rel="stylesheet">
<link href="assets/plugins/chosen/chosen.min.css" rel="stylesheet">
<link href="assets/plugins/icheck/skins/all.css" rel="stylesheet">
<link href="assets/plugins/datepicker/datepicker.min.css" rel="stylesheet">
<link href="assets/plugins/timepicker/bootstrap-timepicker.min.css" rel="stylesheet">
<link href="assets/plugins/validator/bootstrapValidator.min.css" rel="stylesheet">
<link href="assets/plugins/summernote/summernote.min.css" rel="stylesheet">
<link href="assets/plugins/markdown/bootstrap-markdown.min.css" rel="stylesheet">
<link href="assets/plugins/datatable/css/bootstrap.datatable.min.css" rel="stylesheet">
<link href="assets/plugins/morris-chart/morris.min.css" rel="stylesheet">
<link href="assets/plugins/c3-chart/c3.min.css" rel="stylesheet">
<link href="assets/plugins/slider/slider.min.css" rel="stylesheet">
<!-- MAIN CSS (REQUIRED ALL PAGE)-->
<link href="assets/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/style-responsive.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="tooltips">
<!-- BEGIN PANEL COLOR SWITCH -->
<div class="box-demo">
<div class="inner-panel">
<div class="cog-panel" id="demo-panel"><i class="fa fa-cog fa-spin"></i></div>
<p class="text-muted small text-center">COLOR SCHEMES</p>
<div class="row text-center">
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Default" id="color-reset">
<div class="half-tiles bg-dark"></div>
<div class="half-tiles bg-dark"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Light" id="change-color-light">
<div class="half-tiles bg-white"></div>
<div class="half-tiles bg-white"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Primary dark" id="change-primary-dark">
<div class="half-tiles bg-primary"></div>
<div class="half-tiles bg-dark"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Info dark" id="change-info-dark">
<div class="half-tiles bg-info"></div>
<div class="half-tiles bg-dark"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Success dark" id="change-success-dark">
<div class="half-tiles bg-success"></div>
<div class="half-tiles bg-dark"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Danger dark" id="change-danger-dark">
<div class="half-tiles bg-danger"></div>
<div class="half-tiles bg-dark"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Warning dark" id="change-warning-dark">
<div class="half-tiles bg-warning"></div>
<div class="half-tiles bg-dark"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Primary light" id="change-primary-light">
<div class="half-tiles bg-primary"></div>
<div class="half-tiles bg-white"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Info light" id="change-info-light">
<div class="half-tiles bg-info"></div>
<div class="half-tiles bg-white"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Success light" id="change-success-light">
<div class="half-tiles bg-success"></div>
<div class="half-tiles bg-white"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Danger light" id="change-danger-light">
<div class="half-tiles bg-danger"></div>
<div class="half-tiles bg-white"></div>
</div>
</div>
<div class="col-xs-3">
<div class="xs-tiles" data-toggle="tooltip" title="Warning light" id="change-warning-light">
<div class="half-tiles bg-warning"></div>
<div class="half-tiles bg-white"></div>
</div>
</div>
</div>
<button class="btn btn-block btn-primary btn-sm" id="btn-reset">Reset to default</button>
</div>
</div>
<!-- END PANEL COLOR SWITCH -->
<!--
===========================================================
BEGIN PAGE
===========================================================
-->
<div class="wrapper">
<!-- BEGIN TOP NAV -->
<div class="top-navbar">
<div class="top-navbar-inner">
<!-- Begin Logo brand -->
<div class="logo-brand">
<a href="index.html"><img src="assets/img/sentir-logo-primary.png" alt="UEAB|Room Reservation"></a>
</div><!-- /.logo-brand -->
<!-- End Logo brand -->
<div class="top-nav-content no-right-sidebar">
<!-- Begin button sidebar left toggle -->
<div class="btn-collapse-sidebar-left">
<i class="fa fa-align-justify "></i>
</div><!-- /.btn-collapse-sidebar-left -->
<!-- End button sidebar left toggle -->
<!-- Begin user session nav -->
<ul class="nav-user navbar-right full">
<li class="dropdown">
<a href="#notYet" class="dropdown-toggle" data-toggle="dropdown">
<img src="assets/img/avatar/avatar-1.jpg" class="avatar img-circle" alt="Avatar">
Hi, <strong style="text-transform: uppercase;"><?php echo @htmlentities($_SESSION['l031n45']); ?></strong>
</a>
<ul class="dropdown-menu square primary margin-list-rounded with-triangle">
<li ><a href="#notYet" style="text-decoration: line-through" >Change picture</a></li>
<li ><a href="#notYet" style="text-decoration: line-through">Change email</a></li>
<li ><a href="#notYet" style="text-decoration: line-through">Change password</a></li>
<li class="divider"></li>
<li><a href="proc_adds.php?act=logout">Log out</a></li>
</ul>
</li>
</ul>
<!-- End user session nav -->
<!-- Begin Collapse menu nav -->
<div class=" collapse navbar-collapse" id="main-fixed-nav">
<!-- Begin nav search form -->
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" id="search" class="form-control" placeholder="Search">
</div>
</form>
<!-- End nav search form -->
</div><!-- /.navbar-collapse -->
<!-- End Collapse menu nav -->
</div><!-- /.top-nav-content -->
</div><!-- /.top-navbar-inner -->
</div><!-- /.top-navbar -->
<!-- END TOP NAV -->
<!-- BEGIN SIDEBAR LEFT -->
<div class="sidebar-left sidebar-nicescroller">
<ul class="sidebar-menu">
<li><a href="#"><i class="fa fa-dashboard icon-sidebar active selected "></i>Dashboard</a></li>
<li><a href="new_reservation.php"><i class="fa fa-home icon-sidebar"></i>RESERVE</a></li>
<li><a href="history.php"><i class="fa fa-clock-o icon-sidebar"></i>HISTORY</a></li>
<li><a href="#"><i class="fa fa-comment icon-sidebar"></i>REQUEST</a></li>
<li class="active selected">
<a href="#fakelink">
<i class="fa fa-desktop icon-sidebar"></i>
<i class="fa fa-angle-right chevron-icon-sidebar"></i>
SETTINGS
</a>
<ul class="submenu visible">
<li><a href="#link1">Picture</a></li>
<li><a href="#link2">Email</a></li>
<li><a href="#link3">Password</a></li>
</ul>
</li>
</ul>
</div><!-- /.sidebar-left -->
<!-- END SIDEBAR LEFT -->
<!-- BEGIN PAGE CONTENT -->
<div class="page-content">
<div class="container-fluid">
<!-- Begin page heading -->
<h1 class="page-heading ">DASHBOARD <small></small></h1>
<!-- End page heading -->
<!-- BEGIN ALERT -->
<div class="alert alert-warning alert-bold-border fade in alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<p><strong>Welcome!</strong></p>
<p class="text-muted">You probably here cause wanna know how is <a class="alert-link" href="#fakelink">Sentir UI kits template</a>, or you have purchased it. But whatever! I just wanna
say thank you for viewing or purchasing my work. And let me know your feedback! <i class="fa fa-smile-o"></i></p>
</div>
<!-- END ALERT -->
<!-- BEGIN SiTE INFORMATIONS -->
<div class="row">
<div class="col-sm-3">
<div class="the-box no-border bg-success tiles-information">
<i class="fa fa-users icon-bg"></i>
<div class="tiles-inner text-center">
<p>TODAY VISITORS</p>
<h1 class="bolded">12,254K</h1>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
</div><!-- /.progress-bar .progress-bar-success -->
</div><!-- /.progress .no-rounded -->
<p><small>Better than yesterday ( 7,5% )</small></p>
</div><!-- /.tiles-inner -->
</div><!-- /.the-box no-border -->
</div><!-- /.col-sm-3 -->
<div class="col-sm-3">
<div class="the-box no-border bg-primary tiles-information">
<i class="fa fa-shopping-cart icon-bg"></i>
<div class="tiles-inner text-center">
<p>TODAY SALES</p>
<h1 class="bolded">521</h1>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
</div><!-- /.progress-bar .progress-bar-primary -->
</div><!-- /.progress .no-rounded -->
<p><small>Better than yesterday ( 10,5% )</small></p>
</div><!-- /.tiles-inner -->
</div><!-- /.the-box no-border -->
</div><!-- /.col-sm-3 -->
<div class="col-sm-3">
<div class="the-box no-border bg-danger tiles-information">
<i class="fa fa-comments icon-bg"></i>
<div class="tiles-inner text-center">
<p>TODAY FEEDBACK</p>
<h1 class="bolded">124</h1>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
</div><!-- /.progress-bar .progress-bar-danger -->
</div><!-- /.progress .no-rounded -->
<p><small>Less than yesterday ( <span class="text-danger">-7,5%</span> )</small></p>
</div><!-- /.tiles-inner -->
</div><!-- /.the-box no-border -->
</div><!-- /.col-sm-3 -->
<div class="col-sm-3">
<div class="the-box no-border bg-warning tiles-information">
<i class="fa fa-money icon-bg"></i>
<div class="tiles-inner text-center">
<p>TODAY EARNINGS</p>
<h1 class="bolded">10,241</h1>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
</div><!-- /.progress-bar .progress-bar-warning -->
</div><!-- /.progress .no-rounded -->
<p><small>Better than yesterday ( 2,5% )</small></p>
</div><!-- /.tiles-inner -->
</div><!-- /.the-box no-border -->
</div><!-- /.col-sm-3 -->
</div><!-- /.row -->
<!-- END SITE INFORMATIONS -->
<div class="row">
<div class="col-lg-8">
<!-- BEGIN CHART WIDGET 1 -->
<div class="panel panel-info panel-no-border panel-square">
<div class="panel-heading">
<div class="right-content">
<div class="btn-group">
<button class="btn btn-info btn-sm active">
Lifetime
</button>
<button class="btn btn-info btn-sm">
This year
</button>
</div>
</div>
<h3 class="panel-title">EARNINGS AND SALES CHART</h3>
</div><!-- /.panel-heading -->
<div class="the-box no-border full no-margin">
<div class="the-box no-border bg-info no-margin full">
<div id="morris-widget-1" style="height: 250px;"></div>
</div><!-- the-box no-border bg-info no-margin full -->
<div class="the-box no-border bg-dark no-margin chart-des">
<div class="row">
<div class="col-xs-7">
<h3 class="bolded">LAST YEAR</h3>
<p>Today May 20 2014</p>
</div><!-- /.col-xs-7 -->
<div class="col-xs-5 text-right">
<h3 class="bolded text-success">+805.00</h3>
<p>-10,1(11%)</p>
</div><!-- /.col-xs-5 -->
</div><!-- /.row -->
</div><!-- the-box no-border bg-dark no-margin -->
<div class="the-box no-border no-margin">
<div class="row">
<div class="col-xs-7">
<h1 class="bolded">50,024K</h1>
<p class="text-muted">Lifetime earnings</p>
</div><!-- /.col-xs-5 -->
<div class="col-xs-5">
<div id="morris-widget-2" style="height: 120px;"></div>
</div><!-- /.col-xs-5 -->
</div><!-- /.row -->
</div><!-- the-box no-border no-margin -->
</div><!-- /.the-box no-border .full -->
</div><!-- /.the-box no-border .full -->
<!-- END CHART WIDGET 1 -->
<hr />
<div class="row">
<div class="col-sm-6">
<!-- BEGIN PROPERTY CARD -->
<div class="panel panel-danger panel-square panel-no-border task-list-wrap">
<div class="panel-heading lg text-center">
<h3 class="panel-title">SPECIAL OFFERS</h3>
</div>
<div class="the-box full no-border property-card">
<div id="property-slide-8" class="owl-carousel">
<div class="item full"><img src="assets/img/photo/small/img-15.jpg" alt="Image"></div>
<div class="item full"><img src="assets/img/photo/small/img-16.jpg" alt="Image"></div>
<div class="item full"><img src="assets/img/photo/small/img-17.jpg" alt="Image"></div>
</div>
<div class="the-box no-margin no-border bg-warning">
<div class="row">
<div class="col-xs-3">
<p class="property-type-circle bg-danger">RENT</p>
</div><!-- /.col-xs-3 -->
<div class="col-xs-9">
<h1>$750/Wk</h1>
<p>Bond : $3,000</p>
</div><!-- /.col-xs-9 -->
</div><!-- /.row -->
</div><!-- /.the-box .no-margin .no-border .bg-warning -->
<div class="the-box no-margin no-border">
<p class="property-detail-wrap">
<span class="item-detail"><i class="fa fa-inbox"></i> 2 bedroom</span>
<span class="item-detail"><i class="fa fa-male"></i> 2 bathroom</span>
</p>
<p class="has-margin text-center">
<i class="fa fa-star text-warning"></i>
<i class="fa fa-star text-warning"></i>
<i class="fa fa-star text-warning"></i>
<i class="fa fa-star text-warning"></i>
<i class="fa fa-star text-warning"></i>
</p>
<div class="row">
<div class="col-xs-6">
<button class="btn btn-danger btn-block">Favorite</button>
</div><!-- /.col-xs-6 -->
<div class="col-xs-6">
<button class="btn btn-success btn-block">Apply rent</button>
</div><!-- /.col-xs-6 -->
</div><!-- /.row -->
</div><!-- /.the-box .no-margin .no-border .bg-warning -->
</div><!-- /.the-box no-margin -->
</div><!-- /.panel panel-danger panel-no-border panel-square task-list-wrap -->
<!-- END PROPERTY CARD -->
</div><!-- /.col-sm-6 -->
<div class="col-sm-6">
<!-- BEGIN TASK LIST -->
<div class="panel panel-success panel-square panel-no-border task-list-wrap">
<div class="panel-heading lg">
<h3 class="panel-title"><i class="fa fa-check-square-o"></i> Your current tasks</h3>
</div>
<ul class="list-group">
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-1">
<label for="task-1">Eating woods</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-2" checked />
<label for="task-2">Washing my pets</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-3" checked />
<label for="task-3">Uploading selfie photos</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-4" checked />
<label for="task-4">Downloading movie</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-5">
<label for="task-5">Updating my <i>alay</i> status</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-6" checked />
<label for="task-6">Hunting cabe-cabean</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-7">
<label for="task-7">Creating web template</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-8" checked />
<label for="task-8">Walking to Malioboro</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-9" checked />
<label for="task-9">Listening Alay songs</label>
</div><!-- /.checkbox -->
</li>
<li class="list-group-item">
<div class="checkbox">
<input type="checkbox" id="task-10" />
<label for="task-10">Being an elite author</label>
</div><!-- /.checkbox -->
</li>
</ul>
<div class="panel-footer">
<p><button class="btn btn-danger btn-perspective btn-block">See all tasks</button></p>
</div>
</div><!-- /.panel panel-success -->
<!-- END TASK LIST -->
</div><!-- /.col-sm-6 -->
</div><!-- /.row -->
</div><!-- /.col-sm-8 -->
<div class="col-lg-4">
<!-- BEGIN WEATHER WIDGET 3 -->
<div class="the-box no-border" id="weather-widget-1">
<h4 class="text-center bolded white-text">YOGYAKARTA, ID</h4>
<p class="text-center white-text">TONIGHT</p>
<div class="weather-widget">
<div class="row">
<div class="col-xs-6 text-center">
<canvas id="sleet" width="140" height="140"></canvas>
</div><!-- /.col-xs-6 -->
<div class="col-xs-6">
<h1 class="bolded degrees white-text">28<i class="wi-degrees"></i></h1>
<p class="white-text">Will rain at night</p>
</div><!-- /.col-xs-6 -->
</div><!-- /.row -->
</div><!-- /.weather-widget -->
<div class="row">
<div class="col-xs-4 text-center">
<h4 class="white-text">SAT</h4>
<canvas id="clear-night" width="50" height="50"></canvas>
<h4 class="bolded white-text">27<i class="wi-degrees"></i></h4>
</div><!-- /.col-xs-4 -->
<div class="col-xs-4 text-center">
<h4 class="white-text">SUN</h4>
<canvas id="fog" width="50" height="50"></canvas>
<h4 class="bolded white-text">26<i class="wi-degrees"></i></h4>
</div><!-- /.col-xs-4 -->
<div class="col-xs-4 text-center">
<h4 class="white-text">MON</h4>
<canvas id="snow" width="50" height="50"></canvas>
<h4 class="bolded white-text">15<i class="wi-degrees"></i></h4>
</div><!-- /.col-xs-4 -->
</div><!-- /.row -->
</div><!-- /.the-box bg-info no-border -->
<!-- END WEATHER WIDGET 2 -->
<!-- BEGIN SOCIAL TILES -->
<div class="row">
<div class="col-xs-6">
<div class="tiles facebook-tile text-center">
<i class="fa fa-facebook icon-lg-size"></i>
<h4><a href="#fakelink">10K likes</a></h4>
</div><!-- /.tiles .facebook-tile -->
</div><!-- /.col-xs-6 -->
<div class="col-xs-6">
<div class="tiles twitter-tile text-center">
<i class="fa fa-twitter icon-lg-size"></i>
<h4><a href="#fakelink">2K followers</a></h4>
</div><!-- /.tiles .twitter-tile -->
</div><!-- /.col-xs-6 -->
<div class="col-xs-6">
<div class="tiles dribbble-tile text-center">
<i class="fa fa-dribbble icon-lg-size"></i>
<h4><a href="#fakelink">1K followers</a></h4>
</div><!-- /.tiles .dribbble-tile -->
</div><!-- /.col-xs-6 -->
<div class="col-xs-6">
<div class="tiles linkedin-tile text-center">
<i class="fa fa-linkedin icon-lg-size"></i>
<h4><a href="#fakelink">1K followers</a></h4>
</div><!-- /.tiles .dribbble-tile -->
</div><!-- /.col-xs-6 -->
</div><!-- /.row -->
<!-- END SOCIAL TILES -->
<h4 class="small-title"><strong><i class="fa fa-users"></i> FRIEND REQUESTS</strong></h4>
<!-- BEGIN USER CARD LONG -->
<div class="the-box bg-success no-border">
<div class="media user-card-sm">
<a class="pull-left" href="#fakelink">
<img class="media-object img-circle" src="assets/img/avatar/avatar-9.jpg" alt="Avatar">
</a>
<div class="media-body">
<h4 class="media-heading">Mya Weastell</h4>
<p class="text-success">@myaweastell</p>
</div>
<div class="right-button">
<button data-toggle="tooltip" title="Accepted" class="btn btn-success active"><i class="fa fa-check"></i></button>
</div><!-- /.right-button -->
</div>
</div><!-- /.the-box .no-border -->
<!-- BEGIN USER CARD LONG -->
<!-- BEGIN USER CARD LONG -->
<div class="the-box no-border">
<div class="media user-card-sm">
<a class="pull-left" href="#fakelink">
<img class="media-object img-circle" src="assets/img/avatar/avatar-7.jpg" alt="Avatar">
</a>
<div class="media-body">
<h4 class="media-heading">Elizabeth Owens</h4>
<p class="text-info">@elizabethowens</p>
</div>
<div class="right-button">
<button data-toggle="tooltip" title="Accept" class="btn btn-info"><i class="fa fa-check"></i></button>
</div><!-- /.right-button -->
</div>
</div><!-- /.the-box .no-border -->
<!-- BEGIN USER CARD LONG -->
<!-- BEGIN USER CARD LONG -->
<div class="the-box no-border">
<div class="media user-card-sm">
<a class="pull-left" href="#fakelink">
<img class="media-object img-circle" src="assets/img/avatar/avatar-6.jpg" alt="Avatar">
</a>
<div class="media-body">
<h4 class="media-heading">Harold Chavez</h4>
<p class="text-info">@haroldchaves</p>
</div>
<div class="right-button">
<button data-toggle="tooltip" title="Accept" class="btn btn-info"><i class="fa fa-check"></i></button>
</div><!-- /.right-button -->
</div>
</div><!-- /.the-box .no-border -->
<!-- BEGIN USER CARD LONG -->
</div><!-- /.col-sm-4 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-4 col-md-12">
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-12">
<!-- BEGIN HEADLINE NEWS TILES -->
<div class="the-box bg-warning no-border full">
<div id="tiles-slide-2" class="owl-carousel tiles-carousel">
<div class="item full">
<img src="assets/img/avatar/avatar-1.jpg" class="avatar img-circle has-white-shadow" alt="avatar">
<div class="des">
<h4 class="bolded"><a href="#fakelink">Awesome headline news title</a></h4>
<p class="small">02 MAY, 2014</p>
<p class="small">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh</p>
</div>
<img src="assets/img/photo/medium/img-14.jpg" alt="Image">
</div><!-- /.item full -->
<div class="item full">
<img src="assets/img/avatar/avatar-2.jpg" class="avatar img-circle has-white-shadow" alt="avatar">
<div class="des">
<h4 class="bolded"><a href="#fakelink">Awesome headline news title</a></h4>
<p class="small">01 MAY, 2014</p>
<p class="small">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh</p>
</div>
<img src="assets/img/photo/medium/img-12.jpg" alt="Image">
</div><!-- /.item full -->
<div class="item full">
<img src="assets/img/avatar/avatar-3.jpg" class="avatar img-circle has-white-shadow" alt="avatar">
<div class="des">
<h4 class="bolded"><a href="#fakelink">Awesome headline news title</a></h4>
<p class="small">29 APRIL, 2014</p>
<p class="small">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh</p>
</div>
<img src="assets/img/photo/medium/img-13.jpg" alt="Image">
</div><!-- /.item full -->
</div><!-- /#tiles-slide-2 -->
</div><!-- /.the-box no-border full -->
<!-- END HEADLINE NEWS TILES -->
</div><!-- /.col-sm-6 col-md-12 -->
<div class="col-sm-6 col-md-6 col-lg-12">
<!-- BEGIN HEADLINE NEWS TILES -->
<div class="the-box no-border bg-info full">
<div id="tiles-slide-3" class="owl-carousel tiles-carousel-color">
<div class="item full">
<div class="avatar-wrap">
<div class="media">
<a class="pull-left" href="#fakelink">
<img src="assets/img/avatar/avatar-1.jpg" class="avatar img-circle has-white-shadow media-object" alt="avatar">
</a>
<div class="media-body">
<h4 class="media-heading">@parishawker</h4>
</div><!-- /.media-body -->
</div><!-- /.media -->
</div><!-- /.avatar-wrap -->
<div class="des">
<h4 class="bolded"><a href="#fakelink">Awesome life story title</a></h4>
<p class="small">02 MAY, 2014</p>
<p class="small">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh</p>
<button class="btn btn-info btn-sm">Read more</button>
</div>
</div><!-- /.item full -->
<div class="item full">
<div class="avatar-wrap">
<div class="media">
<a class="pull-left" href="#fakelink">
<img src="assets/img/avatar/avatar-2.jpg" class="avatar img-circle has-white-shadow media-object" alt="avatar">
</a>
<div class="media-body">
<h4 class="media-heading">@thomaswhite</h4>
</div><!-- /.media-body -->
</div><!-- /.media -->
</div><!-- /.avatar-wrap -->
<div class="des">
<h4 class="bolded"><a href="#fakelink">Awesome life story title</a></h4>
<p class="small">01 MAY, 2014</p>
<p class="small">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh</p>
<button class="btn btn-info btn-sm">Read more</button>
</div>
</div><!-- /.item full -->
<div class="item full">
<div class="avatar-wrap">
<div class="media">
<a class="pull-left" href="#fakelink">
<img src="assets/img/avatar/avatar-3.jpg" class="avatar img-circle has-white-shadow media-object" alt="avatar">
</a>
<div class="media-body">
<h4 class="media-heading">@doinaslaivici</h4>
</div><!-- /.media-body -->
</div><!-- /.media -->
</div><!-- /.avatar-wrap -->
<div class="des">
<h4 class="bolded"><a href="#fakelink">Awesome life story title</a></h4>
<p class="small">29 APRIL, 2014</p>
<p class="small">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh</p>
<button class="btn btn-info btn-sm">Read more</button>
</div>
</div><!-- /.item full -->
</div><!-- /#tiles-slide-2 -->
</div><!-- /.the-box no-border full -->
<!-- END HEADLINE NEWS TILES -->
</div><!-- /.col-sm-6 col-md-12 -->
</div><!-- /.row -->
</div><!-- /.col-lg-4 col-md-12 -->
<div class="col-lg-8 col-md-12">
<!-- BEGIN SERVER STATUS WIDGET -->
<div class="panel panel-success panel-square panel-no-border">
<div class="panel-heading lg">
<div class="right-content">
<button class="btn btn-success to-collapse" data-toggle="collapse" data-target="#panel-chart-widget-1"><i class="fa fa-chevron-up"></i></button>
</div>
<h3 class="panel-title"><strong>YOUR SERVER STATUS</strong></h3>
</div>
<div id="panel-chart-widget-1" class="collapse in">
<div class="the-box no-border full bg-success no-margin">
<div id="realtime-chart-widget">
<div id="realtime-chart-container-widget"></div>
</div><!-- /.realtime-chart -->
</div><!-- /.the-box .no-border -->
<div class="the-box no-border">
<div class="row">
<div class="col-sm-6">
<div class="row">
<div class="col-xs-6 text-center">
<h4 class="small-heading">Kernel memory</h4>
<span class="chart chart-widget-pie widget-easy-pie-1" data-percent="45">
<span class="percent"></span>
</span>
</div><!-- /.col-xs-6 -->
<div class="col-xs-6 text-center">
<h4 class="small-heading">Physical memory</h4>
<span class="chart chart-widget-pie widget-easy-pie-2" data-percent="85">
<span class="percent"></span>
</span>
</div><!-- /.col-xs-6 -->
</div><!-- /.row -->
<hr />
<button class="btn btn-block btn-danger"><i class="fa fa-cogs"></i> Resource monitor</button>
</div><!-- /.col-sm-6 -->
<div class="col-sm-6">
<h4 class="small-heading">System status</h4>
<p class="small">Handles - <span class="text-danger">80%</span></p>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
</div><!-- /.progress-bar .progress-bar-danger -->
</div><!-- /.progress .no-rounded -->
<p class="small">Threads - <span class="text-warning">65%</span></p>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100" style="width: 65%">
</div><!-- /.progress-bar .progress-bar-warning -->
</div><!-- /.progress .no-rounded -->
<p class="small">Proccess - <span class="text-success">40%</span></p>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
</div><!-- /.progress-bar .progress-bar-success -->
</div><!-- /.progress .no-rounded -->
<p class="small">Cached - <span class="text-info">70%</span></p>
<div class="progress no-rounded progress-xs">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 70%">
</div><!-- /.progress-bar .progress-bar-info -->
</div><!-- /.progress .no-rounded -->
</div><!-- /.col-sm-6 -->
</div><!-- /.row -->
</div><!-- /.the-box .no-border -->
</div><!-- /#panel-chart-widget-1 -->
</div><!-- /.the-box .no-border -->
<!-- END SERVER STATUS WIDGET -->
</div>
</div><!-- /.row -->
<h4 class="text-center small-heading more-margin-bottom">YOUR FAVORITE PLACES WEATHER</h4>
<div class="row">
<div class="col-sm-3">
<!-- BEGIN WEATHER WIDGET 4 -->
<div class="the-box no-border full text-center">
<div class="the-box no-border bg-warning no-margin">
<canvas id="clear-day" width="140" height="140"></canvas>
<h1 class="bolded less-distance">27<i class="wi-degrees"></i></h1>
<h4>It's sunny</h4>
</div><!-- /.the-box no-border bg-warning no-margin -->
<div class="the-box no-border no-margin">
<h4 class="bolded less-distance">BOYOLALI, ID</h4>
<p class="small text-muted">My hometown</p>
</div><!-- /.the-box no-border no-margin -->
</div><!-- /.the-box .no-border .full -->
<!-- END WEATHER WIDGET 4 -->
</div><!-- /.col-sm-3 -->
<div class="col-sm-3">
<!-- BEGIN WEATHER WIDGET 4 -->
<div class="the-box no-border full text-center">
<div class="the-box no-border bg-danger no-margin">
<canvas id="rain" width="140" height="140"></canvas>
<h1 class="bolded less-distance">27<i class="wi-degrees"></i></h1>
<h4>It's raining</h4>
</div><!-- /.the-box no-border bg-danger no-margin -->
<div class="the-box no-border no-margin">
<h4 class="bolded less-distance">PARIS, FRANCE</h4>
<p class="small text-muted">My dream city</p>
</div><!-- /.the-box no-border no-margin -->
</div><!-- /.the-box .no-border .full -->
<!-- END WEATHER WIDGET 4 -->
</div><!-- /.col-sm-3 -->
<div class="col-sm-3">
<!-- BEGIN WEATHER WIDGET 4 -->
<div class="the-box no-border full text-center">
<div class="the-box no-border bg-success no-margin">
<canvas id="wind" width="140" height="140"></canvas>
<h1 class="bolded less-distance">27<i class="wi-degrees"></i></h1>
<h4>It's wind</h4>
</div><!-- /.the-box no-border bg-success no-margin -->
<div class="the-box no-border no-margin">
<h4 class="bolded less-distance">MECCA, KSA</h4>
<p class="small text-muted">Someday I'll be there</p>
</div><!-- /.the-box no-border no-margin -->
</div><!-- /.the-box .no-border .full -->
<!-- END WEATHER WIDGET 4 -->
</div><!-- /.col-sm-3 -->
<div class="col-sm-3">
<!-- BEGIN WEATHER WIDGET 4 -->
<div class="the-box no-border full text-center">
<div class="the-box no-border bg-primary no-margin">
<canvas id="partly-cloudy-night" width="140" height="140"></canvas>
<h1 class="bolded less-distance">27<i class="wi-degrees"></i></h1>
<h4>Cloudy night</h4>
</div><!-- /.the-box no-border bg-primary no-margin -->
<div class="the-box no-border no-margin">
<h4 class="bolded less-distance">TOKYO, JAPAN</h4>
<p class="small text-muted">I just wanna visit</p>
</div><!-- /.the-box no-border no-margin -->
</div><!-- /.the-box .no-border .full -->
<!-- END WEATHER WIDGET 4 -->
</div><!-- /.col-sm-3 -->
</div><!-- /.row -->
<!-- BEGIN CAROUSEL ITEM -->
<div class="the-box no-border">
<h4 class="small-heading more-margin-bottom text-center">LAST WEEK POPULAR ITEM</h4>
<div id="store-item-carousel-3" class="owl-carousel shop-carousel">
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-1.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-2.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-3.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-4.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-5.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-6.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-1.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-2.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-3.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
<div class="item">
<div class="media">
<a class="pull-left" href="#fakelink">
<img class="media-object sm" src="assets/img/shop/img-shop-4.jpg" alt="Image">
</a>
<div class="media-body">
<h4 class="media-heading"><a href="#fakelink">Product name here</a></h4>
<p class="brand">BRAND NAME</p>
<p class="price text-danger"><strong>$50.00</strong></p>
</div>
</div>
</div><!-- /.item -->
</div><!-- /#store-item-carousel-1 -->
</div><!-- /.the-box .no-border -->
<!-- END CAROUSEL ITEM -->