forked from techadam/Sleekadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index4.html
746 lines (681 loc) · 47.3 KB
/
index4.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="description" content="" >
<meta name="author" content="">
<meta name="keywords" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--Meta Responsive tag-->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--Bootstrap CSS-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--Custom style.css-->
<link rel="stylesheet" href="assets/css/quicksand.css">
<link rel="stylesheet" href="assets/css/style.css">
<!--Font Awesome-->
<link rel="stylesheet" href="assets/css/fontawesome-all.min.css">
<link rel="stylesheet" href="assets/css/fontawesome.css">
<!--Animate CSS-->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!--Map-->
<link rel="stylesheet" href="assets/css/jquery-jvectormap-2.0.2.css">
<!--Bootstrap Calendar-->
<link rel="stylesheet" href="assets/js/calendar/bootstrap_calendar.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<title>Sleek Admin</title>
</head>
<body>
<!--Page loader-->
<div class="loader-wrapper">
<div class="loader-circle">
<div class="loader-wave"></div>
</div>
</div>
<!--Page loader-->
<!--Page Wrapper-->
<div class="container-fluid">
<!--Header-->
<div class="row header shadow-sm">
<!--Logo-->
<div class="col-sm-3 pl-0 text-center header-logo">
<div class="bg-theme mr-3 pt-3 pb-2 mb-0">
<h3 class="logo"><a href="#" class="text-secondary logo"><i class="fa fa-rocket"></i> Sleek<span class="small">admin</span></a></h3>
</div>
</div>
<!--Logo-->
<!--Header Menu-->
<div class="col-sm-9 header-menu pt-2 pb-0">
<div class="row">
<!--Menu Icons-->
<div class="col-sm-4 col-8 pl-0">
<!--Toggle sidebar-->
<span class="menu-icon" onclick="toggle_sidebar()">
<span id="sidebar-toggle-btn"></span>
</span>
<!--Toggle sidebar-->
<!--Notification icon-->
<div class="menu-icon">
<a class="" href="#" onclick="toggle_dropdown(this); return false" role="button" class="dropdown-toggle">
<i class="fa fa-bell"></i>
<span class="badge badge-danger">5</span>
</a>
<div class="dropdown dropdown-left bg-white shadow border">
<a class="dropdown-item" href="#"><strong>Notifications</strong></a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<div class="align-self-center mr-3 rounded-circle notify-icon bg-primary">
<i class="fa fa-bookmark"></i>
</div>
<div class="media-body">
<h6 class="mt-0"><strong>Meeting</strong></h6>
<p>You have a meeting by 8:00</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<div class="align-self-center mr-3 rounded-circle notify-icon bg-secondary">
<i class="fa fa-link"></i>
</div>
<div class="media-body">
<h6 class="mt-0"><strong>Events</strong></h6>
<p>Launching new programme</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<div class="align-self-center mr-3 rounded-circle notify-icon bg-warning">
<i class="fa fa-user"></i>
</div>
<div class="media-body">
<h6 class="mt-0"><strong>Personnel</strong></h6>
<p>New employee arrival</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-center link-all" href="#">See all notifications ></a>
</div>
</div>
<!--Notication icon-->
<!--Inbox icon-->
<span class="menu-icon inbox">
<a class="" href="#" role="button" id="dropdownMenuLink3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-envelope"></i>
<span class="badge badge-danger">4</span>
</a>
<div class="dropdown-menu dropdown-menu-left mt-10 animated zoomInDown" aria-labelledby="dropdownMenuLink3">
<a class="dropdown-item" href="#"><strong>Unread messages</strong></a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<img class="align-self-center mr-3 rounded-circle" src="assets/img/profile.jpg" width="50px" height="50px" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-0"><strong>Adam Abdulrahman</strong></h6>
<p>How are you?</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<img class="align-self-center mr-3 rounded-circle" src="assets/img/profile.jpg" width="50px" height="50px" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-0"><strong>Adam Abdulrahman</strong></h6>
<p>How are you?</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a href="#" class="dropdown-item">
<div class="media">
<img class="align-self-center mr-3 rounded-circle" src="assets/img/profile.jpg" width="50px" height="50px" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-0"><strong>Adam Abdulrahman</strong></h6>
<p>How are you?</p>
<small class="text-success">09:23am</small>
</div>
</div>
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-center link-all" href="#">View all messages</a>
</div>
</span>
<!--Inbox icon-->
<span class="menu-icon">
<i class="fa fa-th-large"></i>
</span>
</div>
<!--Menu Icons-->
<!--Search box and avatar-->
<div class="col-sm-8 col-4 text-right flex-header-menu justify-content-end">
<div class="search-rounded mr-3">
<input type="text" class="form-control search-box" placeholder="Enter keywords.." />
</div>
<div class="mr-4">
<a class="" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="assets/img/profile.jpg" alt="Adam" class="rounded-circle" width="40px" height="40px">
</a>
<div class="dropdown-menu dropdown-menu-right mt-13" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="#"><i class="fa fa-user pr-2"></i> Profile</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#"><i class="fa fa-th-list pr-2"></i> Tasks</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#"><i class="fa fa-book pr-2"></i> Projects</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#"><i class="fa fa-power-off pr-2"></i> Logout</a>
</div>
</div>
</div>
<!--Search box and avatar-->
</div>
</div>
<!--Header Menu-->
</div>
<!--Header-->
<!--Main Content-->
<div class="row main-content">
<!--Sidebar left-->
<div class="col-sm-3 col-xs-6 sidebar pl-0">
<div class="inner-sidebar mr-3">
<!--Image Avatar-->
<div class="avatar text-center">
<img src="assets/img/client-img4.png" alt="" class="rounded-circle" />
<p><strong>Jonathan Clarke</strong></p>
<span class="text-primary small"><strong>UI/UX Designer</strong></span>
</div>
<!--Image Avatar-->
<!--Sidebar Navigation Menu-->
<div class="sidebar-menu-container">
<ul class="sidebar-menu mt-4 mb-4">
<li class="parent">
<a href="#" onclick="toggle_menu('dashboard'); return false" class=""><i class="fa fa-dashboard mr-3"> </i>
<span class="none">Dashboard <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="dashboard">
<li class="child"><a href="index.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Default</a></li>
<li class="child"><a href="index2.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Analytics</a></li>
<li class="child"><a href="index3.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ecommerce</a></li>
<li class="child"><a href="index4.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Cryptocurrency</a></li>
</ul>
</li>
</li>
<li class="parent">
<a href="widgets.html" class=""><i class="fa fa-puzzle-piece mr-3"></i>
<span class="none">Widget </span>
</a>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('ul_element'); return false" class=""><i class="fa fa-puzzle-piece mr-3"></i>
<span class="none">UI Elements <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="ul_element">
<li class="child"><a href="accordion.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Accordions</a></li>
<li class="child"><a href="buttons.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Buttons</a></li>
<li class="child"><a href="badges.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Badges</a></li>
<li class="child"><a href="breadcrumb.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Breadcrumbs</a></li>
<li class="child"><a href="cards.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Cards</a></li>
<li class="child"><a href="icons.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Icons</a></li>
<li class="child"><a href="modal.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Modals</a></li>
<li class="child"><a href="notification.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Notification</a></li>
<li class="child"><a href="progressbar.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Progressbar</a></li>
<li class="child"><a href="sweetalert.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Sweet alert</a></li>
<li class="child"><a href="tabs.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Tabs</a></li>
<li class="child"><a href="tooltip-popover.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Tooltip and Popovers</a></li>
<li class="child"><a href="typography.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Typography</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('form_element'); return false" class=""><i class="fa fa-pencil-square mr-3"></i>
<span class="none">Form Elements <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="form_element">
<li class="child"><a href="form-general.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Basic Elements</a></li>
<li class="child"><a href="form-advanced.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Advanced Elements</a></li>
<li class="child"><a href="form-validation.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Validation</a></li>
<li class="child"><a href="form-wizard.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Form Wizard</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('editors'); return false" class=""><i class="fa fa-pencil-square-o mr-3"></i>
<span class="none">Text Editors <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="editors">
<li class="child"><a href="ckeditor-classic.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ckeditor classic</a></li>
<li class="child"><a href="ckeditor-inline.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ckeditor inline</a></li>
<li class="child"><a href="ckeditor-document.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Ckeditor document</a></li>
<li class="child"><a href="summernote.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Summernote editor</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('tables'); return false" class=""><i class="fa fa-pencil-square mr-3"></i>
<span class="none">Tables <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="tables">
<li class="child"><a href="basic-tables.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Basic Tables</a></li>
<li class="child"><a href="datatable.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Datatables</a></li>
<li class="child"><a href="jsgrid-table.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> JSGrid Tables</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('charts'); return false" class=""><i class="fa fa-pie-chart mr-3"></i>
<span class="none">Charts <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="charts">
<li class="child"><a href="chart.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Chart JS</a></li>
<li class="child"><a href="chartist.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Chartist JS</a></li>
<li class="child"><a href="echarts.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Echarts JS</a></li>
<li class="child"><a href="flot.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Flot JS</a></li>
<li class="child"><a href="morris.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Morris JS</a></li>
<li class="child"><a href="nvd3.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> NVD3 JS</a></li>
<li class="child"><a href="sparkline.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Sparkline JS</a></li>
</ul>
</li>
<li class="parent">
<a href="icons.html" class=""><i class="fa fa-toggle-on mr-3"></i>
<span class="none">Icons</span>
</a>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('ecommerce'); return false" class=""><i class="fa fa-shopping-cart mr-3"></i>
<span class="none">Ecommerce <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="ecommerce">
<li class="child"><a href="products.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> ProductList</a></li>
<li class="child"><a href="product-detail.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> ProductDetail</a></li>
<li class="child"><a href="orders.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> OrderList</a></li>
<li class="child"><a href="invoice.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Invoice</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('maps'); return false" class=""><i class="fa fa-map mr-3"></i>
<span class="none">Maps <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="maps">
<li class="child"><a href="jvector-maps.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Jvector Maps</a></li>
<li class="child"><a href="google-maps.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Google Maps</a></li>
</ul>
</li>
<li class="parent">
<a href="#" onclick="toggle_menu('pages'); return false" class=""><i class="fa fa-file mr-3"></i>
<span class="none">Pages <i class="fa fa-angle-down pull-right align-bottom"></i></span>
</a>
<ul class="children" id="pages">
<li class="child"><a href="email-inbox.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Email-Inbox</a></li>
<li class="child"><a href="email.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Email-Compose</a></li>
<li class="child"><a href="login.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Login</a></li>
<li class="child"><a href="register.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Signup</a></li>
<li class="child"><a href="lockscreen.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Lock Screen</a></li>
<li class="child"><a href="forgot-password.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Forgot Password</a></li>
<li class="child"><a href="profile.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Profile</a></li>
<li class="child"><a href="gallery.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Gallery</a></li>
<li class="child"><a href="invoice.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Invoice</a></li>
<li class="child"><a href="search-result.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Search</a></li>
<li class="child"><a href="pricing.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Pricing</a></li>
<li class="child"><a href="blank.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Blank Page</a></li>
<li class="child"><a href="error-404.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Error 404</a></li>
<li class="child"><a href="error-500.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Error 500</a></li>
<li class="child"><a href="error-504.html" class="ml-4"><i class="fa fa-angle-right mr-2"></i> Error 504</a></li>
</ul>
</li>
<li class="parent">
<a href="fullcalendar.html" class=""><i class="fa fa-calendar-o mr-3"> </i>
<span class="none">Full Calendar </span>
</a>
</li>
</ul>
</div>
<!--Sidebar Naigation Menu-->
</div>
</div>
<!--Sidebar left-->
<!--Content right-->
<div class="col-sm-9 col-xs-12 content pt-3 pl-0">
<h5 class="mb-3" ><strong>Dashboard</strong></h5>
<!--Dashboard widget-->
<div class="mt-1 mb-3 button-container">
<div class="row pl-0">
<div class="col-lg-4 col-md-4 col-sm-6 col-12 mb-3">
<div class="bg-theme border shadow rounded">
<div class="p-2 text-center">
<h5 class="mb-0 mt-2 text-light"><small><strong>INCOME</strong></small></h5>
<h1>$36,500</h1>
</div>
<!--<div class="align-bottom">
<span id="incomeBarCol"></span>
</div>-->
<div class="text-center text-light">
75% in 2 years
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-12 mb-3">
<div class="bg-success border shadow rounded">
<div class="p-2 mb-1 text-center">
<h5 class="mb-0 mt-2 text-light"><small><strong>GROSS PROFIT</strong></small></h5>
<h1 class="text-white">$25,650</h1>
</div>
<!--<div class="align-bottom">
<span id="profitBarCol"></span>
</div>-->
<div class="text-center text-light">
65% in 2 years
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6 col-12 mb-3">
<div class="bg-danger border shadow rounded">
<div class="p-2 text-center">
<h5 class="mb-0 mt-2 text-light"><small><strong>EXPENSES</strong></small></h5>
<h1 class="text-white">$10,850</h1>
</div>
<!--<div class="align-bottom">
<span id="expensesBarCol"></span>
</div>-->
<div class="text-center text-light">
15% in 2 years
</div>
</div>
</div>
</div>
</div>
<!--/Dashboard widget-->
<div class="row mt-3">
<div class="col-sm-12 col-md-12">
<!--Analytics-->
<div class="mt-1 mb-3 p-3 button-container bg-white shadow-sm border">
<h6 class="mb-3">Site Analytics</h6>
<div id="salesEcharts" style="width: 100%; height: 400px; overflow: hidden;"></div>
</div>
<!--/Analytics-->
</div>
</div>
<div class="row mt-3">
<div class="col-sm-12 col-md-6">
<!--Recent followers-->
<div class="mt-1 mb-3 p-3 button-container bg-white shadow-sm border">
<h6 class="mb-3">Recent Followers</h6>
<div class="table-responsive">
<table class="table table-striped" id="project_table">
<thead>
<tr>
<th>#</th>
<th>Project</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>01</td>
<td><i class="fa fa-facebook text-theme"></i> Facebook</td>
<td>
<div class="progress">
<div class="progress-bar bg-primary progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="50" style="width: 50%" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</td>
</tr>
<tr>
<td>02</td>
<td><i class="fa fa-twitter text-primary"></i> Twitter</td>
<td>
<div class="progress">
<div class="progress-bar bg-danger progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="30" style="width: 30%" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</td>
</tr>
<tr>
<td>03</td>
<td><i class="fa fa-google-plus text-danger"></i> Google</td>
<td>
<div class="progress">
<div class="progress-bar bg-success progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="70" style="width: 70%" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</td>
</tr>
<tr>
<td>04</td>
<td><i class="fa fa-linkedin text-info"></i> Linkedin</td>
<td>
<div class="progress">
<div class="progress-bar bg-info progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="55" style="width: 55%" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</td>
</tr>
<tr>
<td>05</td>
<td><i class="fab fa-telegram text-primary"></i> Telegram</td>
<td>
<div class="progress">
<div class="progress-bar bg-danger progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="45" style="width: 45%" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!--/Recent followers-->
</div>
<div class="col-sm-12 col-md-6">
<!--World Market-->
<div class="mt-1 mb-3 p-3 button-container bg-white shadow-sm border">
<h6 class="mb-3">World Market</h6>
<div id="worldMarket2" style="width: 100%; height: 303px"></div>
</div>
<!--/World Market-->
</div>
</div>
<!--Custom cards section-->
<div class="row mt-3">
<div class="col-sm-3">
<div class="mt-1 mb-3 p-3 button-container bg-white shadow-sm border">
<h6 class="mb-3">Emails</h6>
<p class="mb-2 mt-3">Open rate <span class="pull-right">70%</span></p>
<div class="progress mb-4" style="height: 7px;">
<div class="progress-bar bg-danger" role="progressbar" aria-valuenow="70" style="width: 70%" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<p class="mb-2">Sent <span class="pull-right">310/500</span></p>
<div class="progress mb-4" style="height: 7px;">
<div class="progress-bar bg-success" role="progressbar" style="width: 45%" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<p class="mb-2">Recieved <span class="pull-right">210/500</span></p>
<div class="progress mb-4" style="height: 7px;">
<div class="progress-bar bg-primary" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="mt-1 mb-3 p-3 button-container bg-white shadow-sm border">
<h6 class="mb-3">Top Products</h6>
<div class="table-responsive">
<table class="table">
<tr>
<td>IphoneX</td>
<td>225</td>
</tr>
<tr>
<td>Onesplus</td>
<td>1850</td>
</tr>
<tr>
<td>Samsung S7</td>
<td>1550</td>
</tr>
</table>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="mt-1 mb-3 p-3 button-container bg-theme shadow border">
<h6 class="mb-4 text-center text-light">Average Deal Size</h6>
<div class="row">
<div class="col-sm-6">
<div class="text-center pb-3">
<h5 class="mb-3 mt-2 text-light"><small><strong>30%</strong></small></h5>
<h1 class="text-light">$25,650</h1>
<h5 class="mb-0 mt-3 text-light"><small><strong>per rep</strong></small></h5>
</div>
</div>
<div class="col-sm-6">
<div class="text-center pb-3">
<h5 class="mb-3 mt-2 text-light"><small><strong>12%</strong></small></h5>
<h1 class="text-light">$15,650</h1>
<h5 class="mb-0 mt-3 text-light"><small><strong>per team</strong></small></h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-3">
<!--Messages-->
<div class="col-sm-6">
<div class="mt-1 mb-3 p-3 button-container bg-white shadow-sm border">
<h6 class="mb-3">Messages</h6><hr>
<div class="feed-single mb-3">
<div class="media">
<img class="mr-3 rounded-circle" height="40px" width="40px" src="assets/img/John-doe.png" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-1">Mario Mendez
<small class="text-muted pl-2 border-radius"><span class="badge badge-danger">Unread</span></small>
<small class="text-muted small pull-right"><i class="fa fa-clock"></i> 10 hours</small>
<p class="clearfix"></p>
</h6>
<p>Hello, New update on my existing projects #portfolio #architecture <a href="#" class="text-theme">www.github.io/architect-mendez</a></p>
<div class="feed-footer">
<span class="pr-3"><i class="fa fa-star"></i> 3</span>
<span class="pr-3"><i class="fa fa-comment"></i> 2</span>
<span class="pr-3"><i class="fa fa-share"></i></span>
<span class="pl-3 pull-right"><i class="fa fa-ellipsis-h"></i></span>
<p class="clearfix"></p>
</div>
</div>
</div> <hr>
<div class="media">
<img class="mr-3 rounded-circle" height="40px" width="40px" src="assets/img/client-img3.png" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-1">Helena Mendez
<small class="text-muted pl-2 border-radius"><span class="badge badge-danger">Unread</span></small>
<small class="text-muted small pull-right"><i class="fa fa-clock"></i> August 8</small>
<p class="clearfix"></p>
</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<div class="feed-footer">
<span class="pr-3"><i class="fa fa-star"></i> 3</span>
<span class="pr-3"><i class="fa fa-comment"></i> 2</span>
<span class="pr-3"><i class="fa fa-share"></i></span>
<span class="pl-3 pull-right"><i class="fa fa-ellipsis-h"></i></span>
<p class="clearfix"></p>
</div>
</div>
</div> <hr>
<div class="media">
<img class="mr-3 rounded-circle" height="40px" width="40px" src="assets/img/client-img2.png" alt="Generic placeholder image">
<div class="media-body">
<h6 class="mt-1">Aliya Mario
<small class="text-muted pl-2 border-radius"><span class="badge badge-danger">Unread</span></small>
<small class="text-muted small pull-right"><i class="fa fa-clock"></i> 1 month</small>
<p class="clearfix"></p>
</h6>
<p>Hi Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<div class="feed-footer">
<span class="pr-3"><i class="fa fa-star"></i> 3</span>
<span class="pr-3"><i class="fa fa-comment"></i> 2</span>
<span class="pr-3"><i class="fa fa-share"></i></span>
<span class="pl-3 pull-right"><i class="fa fa-ellipsis-h"></i></span>
<p class="clearfix"></p>
</div>
</div>
</div> <hr>
<div class="text-center">
<p><a href="#" class="text-theme">View all messages <i class="fa fa-angle-double-down"></i></a></p>
</div>
</div>
</div>
</div>
<!--/Messages-->
<!--Comments-->
<div class="col-sm-6">
<div class="mt-1 mb-3 p-3 button-container bg-white shadow-sm border">
<h6 class="mb-3">Updates</h6><hr>
<div class="updates-wrapper border-left">
<div class="updates-content p-3 up-primary">
<h6 class="bc-header-small">Ground breaking sales</h6>
<p class="bc-description">Lorem Ipsum is simply dummy text of the printing</p>
<span class="small"><i class="fas fa-clock text-success"></i> 7 months ago</span>
</div>
<div class="updates-content p-3 up-warning">
<h6 class="bc-header-small">User confirmation</h6>
<p class="bc-description">Lorem Ipsum is simply dummy text of the printing</p>
<span class="small"><i class="fas fa-clock text-success"></i> 7 months ago</span>
</div>
<div class="updates-content p-3 up-danger">
<h6 class="bc-header-small">New Registration</h6>
<p class="bc-description">Lorem Ipsum is simply dummy text of the printing</p>
<span class="small"><i class="fas fa-clock text-success"></i> 7 months ago</span>
</div>
<div class="updates-content p-3 up-success">
<h6 class="bc-header-small">User confirmation</h6>
<p class="bc-description">Lorem Ipsum is simply dummy text of the printing</p>
<span class="small"><i class="fas fa-clock text-success"></i> 7 months ago</span>
</div>
</div>
</div>
</div>
<!--/Comments-->
</div>
<!--Footer-->
<div class="row mt-5 mb-4 footer">
<div class="col-sm-8">
<span>© All rights reserved 2019 designed by <a class="text-theme" href="#">A-Fusion</a></span>
</div>
<div class="col-sm-4 text-right">
<a href="#" class="ml-2">Contact Us</a>
<a href="#" class="ml-2">Support</a>
</div>
</div>
<!--Footer-->
</div>
</div>
<!--Main Content-->
</div>
<!--Page Wrapper-->
<!-- Page JavaScript Files-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery-1.12.4.min.js"></script>
<!--Popper JS-->
<script src="assets/js/popper.min.js"></script>
<!--Bootstrap-->
<script src="assets/js/bootstrap.min.js"></script>
<!--Sweet alert JS-->
<script src="assets/js/sweetalert.js"></script>
<!--Progressbar JS-->
<script src="assets/js/progressbar.min.js"></script>
<!--Echarts-->
<script src="assets/js/charts/echarts.min.js"></script>
<script src="assets/js/charts/echarts-data.js"></script>
<!--Maps-->
<script src="assets/js/maps/jquery-jvectormap-2.0.2.min.js"></script>
<script src="assets/js/maps/jquery-jvectormap-world-mill-en.js"></script>
<script src="assets/js/maps/jvector-maps.js"></script>
<!--Bootstrap Calendar JS-->
<script src="assets/js/calendar/bootstrap_calendar.js"></script>
<script src="assets/js/calendar/demo.js"></script>
<!--Custom Js Script-->
<script src="assets/js/custom.js"></script>
</body>
</html>