-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathemail-inbox.html
executable file
·851 lines (831 loc) · 68.9 KB
/
email-inbox.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon.png">
<title>Ela - Bootstrap Admin Dashboard Template</title>
<!-- Bootstrap Core CSS -->
<link href="css/lib/bootstrap/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/helper.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:** -->
<!--[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="fix-header fix-sidebar">
<!-- Preloader - style you can find in spinners.css -->
<div class="preloader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" /> </svg>
</div>
<!-- Main wrapper -->
<div id="main-wrapper">
<div class="header">
<nav class="navbar top-navbar navbar-expand-md navbar-light">
<!-- Logo -->
<div class="navbar-header">
<a class="navbar-brand" href="index.html">
<!-- Logo icon -->
<b><img src="images/logo.png" alt="homepage" class="dark-logo" /></b>
<!--End Logo icon -->
<!-- Logo text -->
<span><img src="images/logo-text.png" alt="homepage" class="dark-logo" /></span>
</a>
</div>
<!-- End Logo -->
<div class="navbar-collapse">
<!-- toggle and nav items -->
<ul class="navbar-nav mr-auto mt-md-0">
<!-- This is -->
<li class="nav-item"> <a class="nav-link nav-toggler hidden-md-up text-muted " href="javascript:void(0)"><i class="mdi mdi-menu"></i></a> </li>
<li class="nav-item m-l-10"> <a class="nav-link sidebartoggler hidden-sm-down text-muted " href="javascript:void(0)"><i class="ti-menu"></i></a> </li>
<!-- Search -->
<li class="nav-item hidden-sm-down search-box"> <a class="nav-link hidden-sm-down text-muted " href="javascript:void(0)"><i class="ti-search"></i></a>
<form class="app-search">
<input type="text" class="form-control" placeholder="Search here"> <a class="srh-btn"><i class="ti-close"></i></a> </form>
</li>
<!-- Language -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted " href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="flag-icon flag-icon-us"></i></a>
<div class="dropdown-menu animated zoomIn">
<a class="dropdown-item" href="#"><i class="flag-icon flag-icon-ca"></i> Canada</a>
<a class="dropdown-item" href="#"><i class="flag-icon flag-icon-fr"></i> French</a>
<a class="dropdown-item" href="#"><i class="flag-icon flag-icon-cn"></i> China</a>
<a class="dropdown-item" href="#"><i class="flag-icon flag-icon-de"></i> Dutch</a>
</div>
</li>
<!-- Messages -->
<li class="nav-item dropdown mega-dropdown"> <a class="nav-link dropdown-toggle text-muted " href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-th-large"></i></a>
<div class="dropdown-menu animated zoomIn">
<ul class="mega-dropdown-menu row">
<li class="col-lg-3 m-b-30">
<h4 class="m-b-20">CONTACT US</h4>
<!-- Contact -->
<form>
<div class="form-group">
<input type="text" class="form-control" id="exampleInputname1" placeholder="Enter Name"> </div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter email"> </div>
<div class="form-group">
<textarea class="form-control" id="exampleTextarea" rows="3" placeholder="Message"></textarea>
</div>
<button type="submit" class="btn btn-info">Submit</button>
</form>
</li>
<li class="col-lg-3 col-xlg-3 m-b-30">
<h4 class="m-b-20">List style</h4>
<!-- List style -->
<ul class="list-style-none">
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
</ul>
</li>
<li class="col-lg-3 col-xlg-3 m-b-30">
<h4 class="m-b-20">List style</h4>
<!-- List style -->
<ul class="list-style-none">
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
</ul>
</li>
<li class="col-lg-3 col-xlg-3 m-b-30">
<h4 class="m-b-20">List style</h4>
<!-- List style -->
<ul class="list-style-none">
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> This Is Another Link</a></li>
</ul>
</li>
</ul>
</div>
</li>
<!-- End Messages -->
</ul>
<!-- User profile and search -->
<ul class="navbar-nav my-lg-0">
<!-- Comment -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted text-muted " href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-bell"></i>
<div class="notify"> <span class="heartbit"></span> <span class="point"></span> </div>
</a>
<div class="dropdown-menu dropdown-menu-right mailbox animated zoomIn">
<ul>
<li>
<div class="drop-title">Notifications</div>
</li>
<li>
<div class="message-center">
<!-- Message -->
<a href="#">
<div class="btn btn-danger btn-circle m-r-10"><i class="fa fa-link"></i></div>
<div class="mail-contnet">
<h5>This is title</h5> <span class="mail-desc">Just see the my new admin!</span> <span class="time">9:30 AM</span>
</div>
</a>
<!-- Message -->
<a href="#">
<div class="btn btn-success btn-circle m-r-10"><i class="ti-calendar"></i></div>
<div class="mail-contnet">
<h5>This is another title</h5> <span class="mail-desc">Just a reminder that you have event</span> <span class="time">9:10 AM</span>
</div>
</a>
<!-- Message -->
<a href="#">
<div class="btn btn-info btn-circle m-r-10"><i class="ti-settings"></i></div>
<div class="mail-contnet">
<h5>This is title</h5> <span class="mail-desc">You can customize this template as you want</span> <span class="time">9:08 AM</span>
</div>
</a>
<!-- Message -->
<a href="#">
<div class="btn btn-primary btn-circle m-r-10"><i class="ti-user"></i></div>
<div class="mail-contnet">
<h5>This is another title</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:02 AM</span>
</div>
</a>
</div>
</li>
<li>
<a class="nav-link text-center" href="javascript:void(0);"> <strong>Check all notifications</strong> <i class="fa fa-angle-right"></i> </a>
</li>
</ul>
</div>
</li>
<!-- End Comment -->
<!-- Messages -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted " href="#" id="2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-envelope"></i>
<div class="notify"> <span class="heartbit"></span> <span class="point"></span> </div>
</a>
<div class="dropdown-menu dropdown-menu-right mailbox animated zoomIn" aria-labelledby="2">
<ul>
<li>
<div class="drop-title">You have 4 new messages</div>
</li>
<li>
<div class="message-center">
<!-- Message -->
<a href="#">
<div class="user-img"> <img src="images/users/5.jpg" alt="user" class="img-circle"> <span class="profile-status online pull-right"></span> </div>
<div class="mail-contnet">
<h5>Michael Qin</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:30 AM</span>
</div>
</a>
<!-- Message -->
<a href="#">
<div class="user-img"> <img src="images/users/2.jpg" alt="user" class="img-circle"> <span class="profile-status busy pull-right"></span> </div>
<div class="mail-contnet">
<h5>John Doe</h5> <span class="mail-desc">I've sung a song! See you at</span> <span class="time">9:10 AM</span>
</div>
</a>
<!-- Message -->
<a href="#">
<div class="user-img"> <img src="images/users/3.jpg" alt="user" class="img-circle"> <span class="profile-status away pull-right"></span> </div>
<div class="mail-contnet">
<h5>Mr. John</h5> <span class="mail-desc">I am a singer!</span> <span class="time">9:08 AM</span>
</div>
</a>
<!-- Message -->
<a href="#">
<div class="user-img"> <img src="images/users/4.jpg" alt="user" class="img-circle"> <span class="profile-status offline pull-right"></span> </div>
<div class="mail-contnet">
<h5>Michael Qin</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:02 AM</span>
</div>
</a>
</div>
</li>
<li>
<a class="nav-link text-center" href="javascript:void(0);"> <strong>See all e-Mails</strong> <i class="fa fa-angle-right"></i> </a>
</li>
</ul>
</div>
</li>
<!-- End Messages -->
<!-- Profile -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted " href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><img src="images/users/5.jpg" alt="user" class="profile-pic" /></a>
<div class="dropdown-menu dropdown-menu-right animated zoomIn">
<ul class="dropdown-user">
<li><a href="#"><i class="ti-user"></i> Profile</a></li>
<li><a href="#"><i class="ti-wallet"></i> Balance</a></li>
<li><a href="#"><i class="ti-email"></i> Inbox</a></li>
<li role="separator" class="divider"></li>
<li><a href="#"><i class="ti-settings"></i> Setting</a></li>
<li role="separator" class="divider"></li>
<li><a href="#"><i class="fa fa-power-off"></i> Logout</a></li>
</ul>
</div>
</li>
</ul>
</div>
</nav>
</div>
<!-- End header header -->
<!-- Left Sidebar -->
<div class="left-sidebar">
<!-- Sidebar scroll-->
<div class="scroll-sidebar">
<!-- Sidebar navigation-->
<nav class="sidebar-nav">
<ul id="sidebarnav">
<li class="nav-devider"></li>
<li class="nav-label">Home</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-tachometer"></i><span class="hide-menu">Dashboard <span class="label label-rouded label-primary pull-right">3</span></span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="index.html">Dashboard 1 </a></li>
<li><a href="index1.html">Dashboard 2 </a></li>
<li><a href="index2.html">Dashboard 3 </a></li>
</ul>
</li>
<li class="nav-label">Layout</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-columns"></i><span class="hide-menu">Layout</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="layout-blank.html">Blank</a></li>
<li><a href="layout-boxed.html">Boxed</a></li>
<li><a href="layout-fix-header.html">Fix Header</a></li>
<li><a href="layout-fix-sidebar.html">Fix Sidebar</a></li>
</ul>
</li>
<li class="nav-label">Apps & Charts</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-envelope"></i><span class="hide-menu">Mailbox</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="email-compose.html">Compose</a></li>
<li><a href="email-read.html">Read</a></li>
<li><a href="email-inbox.html">Inbox</a></li>
</ul>
</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-bar-chart"></i><span class="hide-menu">Charts</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="chart-flot.html">Flot</a></li>
<li><a href="chart-morris.html">Morris</a></li>
<li><a href="chart-chartjs.html">ChartJs</a></li>
<li><a href="chart-chartist.html">Chartist </a></li>
<li><a href="chart-amchart.html">AmChart</a></li>
<li><a href="chart-echart.html">EChart</a></li>
<li><a href="chart-sparkline.html">Sparkline</a></li>
<li><a href="chart-peity.html">Peity</a></li>
</ul>
</li>
<li> <a href="app-profile.html" aria-expanded="false"><i class="fa fa-user"></i><span class="hide-menu">Profile</span></a></li>
<li class="nav-label">Features</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-suitcase"></i><span class="hide-menu">Ui Elements <span class="label label-rouded label-danger pull-right">12</span></span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="ui-alert.html">Alert</a></li>
<li><a href="ui-button.html">Button</a></li>
<li><a href="ui-dropdown.html">Dropdown</a></li>
<li><a href="ui-progressbar.html">Progressbar</a></li>
<li><a href="ui-tab.html">Tab</a></li>
<li><a href="ui-typography.html">Typography</a></li>
<li><a href="uc-calender.html">Calender</a></li>
<li><a href="uc-datamap.html">Datamap</a></li>
<li><a href="uc-nestedable.html">Nestedable</a></li>
<li><a href="uc-sweetalert.html">Sweetalert</a></li>
<li><a href="uc-toastr.html">Toastr</a></li>
<li><a href="uc-weather.html">Weather</a></li>
</ul>
</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-wpforms"></i><span class="hide-menu">Forms</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="form-basic.html">Basic Forms</a></li>
<li><a href="form-layout.html">Form Layout</a></li>
<li><a href="form-validation.html">Form Validation</a></li>
<li><a href="form-editor.html">Editor</a></li>
<li><a href="form-dropzone.html">Dropzone</a></li>
</ul>
</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-table"></i><span class="hide-menu">Tables</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="table-bootstrap.html">Basic Tables</a></li>
<li><a href="table-datatable.html">Data Tables</a></li>
</ul>
</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-th-large"></i><span class="hide-menu">Widgets</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="widget.html">Widgets</a></li>
</ul>
</li>
<li class="nav-label">EXTRA</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-book"></i><span class="hide-menu">Sample Pages <span class="label label-rouded label-success pull-right">25</span></span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="#" class="has-arrow">Authentication <span class="label label-rounded label-success">6</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="page-login.html">Login</a></li>
<li><a href="page-register.html">Register</a></li>
<li><a href="page-invoice.html">Invoice</a></li>
</ul>
</li>
<li><a href="#" class="has-arrow">Error Pages</a>
<ul aria-expanded="false" class="collapse">
<li><a href="page-error-400.html">400</a></li>
<li><a href="page-error-403.html">403</a></li>
<li><a href="page-error-404.html">404</a></li>
<li><a href="page-error-500.html">500</a></li>
<li><a href="page-error-503.html">503</a></li>
</ul>
</li>
</ul>
</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-map-marker"></i><span class="hide-menu">Maps</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="map-google.html">Google Maps</a></li>
<li><a href="map-vector.html">Vector Map</a></li>
</ul>
</li>
<li> <a class="has-arrow " href="#" aria-expanded="false"><i class="fa fa-level-down"></i><span class="hide-menu">Multi level dd</span></a>
<ul aria-expanded="false" class="collapse">
<li><a href="#">item 1.1</a></li>
<li><a href="#">item 1.2</a></li>
<li> <a class="has-arrow" href="#" aria-expanded="false">Menu 1.3</a>
<ul aria-expanded="false" class="collapse">
<li><a href="#">item 1.3.1</a></li>
<li><a href="#">item 1.3.2</a></li>
<li><a href="#">item 1.3.3</a></li>
<li><a href="#">item 1.3.4</a></li>
</ul>
</li>
<li><a href="#">item 1.4</a></li>
</ul>
</li>
</ul>
</nav>
<!-- End Sidebar navigation -->
</div>
<!-- End Sidebar scroll-->
</div>
<!-- End Left Sidebar -->
<!-- Page wrapper -->
<div class="page-wrapper">
<!-- Bread crumb -->
<div class="row page-titles">
<div class="col-md-5 align-self-center">
<h3 class="text-primary">Dashboard</h3> </div>
<div class="col-md-7 align-self-center">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="javascript:void(0)">Home</a></li>
<li class="breadcrumb-item active">Dashboard</li>
</ol>
</div>
</div>
<!-- End Bread crumb -->
<!-- Container fluid -->
<div class="container-fluid">
<!-- Start Page Content -->
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<div class="card-content">
<!-- Left sidebar -->
<div class="inbox-leftbar">
<a class="btn btn-danger btn-block waves-effect waves-light" href="email-compose.html">Compose</a>
<div class="mail-list mt-4">
<a class="list-group-item border-0 text-danger" href="#"><i class="mdi mdi-inbox font-18 align-middle mr-2"></i><b>Inbox</b><span class="label label-danger float-right ml-2">8</span></a>
<a class="list-group-item border-0" href="#"><i class="mdi mdi-star font-18 align-middle mr-2"></i>Starred</a>
<a class="list-group-item border-0" href="#"><i class="mdi mdi-file-document-box font-18 align-middle mr-2"></i>Draft<span class="label label-info float-right ml-2">32</span></a>
<a class="list-group-item border-0" href="#"><i class="mdi mdi-send font-18 align-middle mr-2"></i>Sent Mail</a>
<a class="list-group-item border-0" href="#"><i class="mdi mdi-delete font-18 align-middle mr-2"></i>Trash</a>
</div>
<h6 class="mt-5 m-b-15">Labels</h6>
<div class="list-group b-0 mail-list">
<a class="list-group-item border-0" href="#"><span class="fa fa-circle text-info mr-2"></span>Web App</a>
<a class="list-group-item border-0" href="#"><span class="fa fa-circle text-warning mr-2"></span>Project 1</a>
<a class="list-group-item border-0" href="#"><span class="fa fa-circle text-purple mr-2"></span>Project 2</a>
<a class="list-group-item border-0" href="#"><span class="fa fa-circle text-pink mr-2"></span>Friends</a>
<a class="list-group-item border-0" href="#"><span class="fa fa-circle text-success mr-2"></span>Family</a>
</div>
</div>
<!-- End Left sidebar -->
<div class="inbox-rightbar">
<div role="toolbar" class="">
<div class="btn-group">
<button class="btn btn-light waves-effect" type="button"><i class="mdi mdi-archive font-18 vertical-middle"></i></button>
<button class="btn btn-light waves-effect" type="button"><i class="mdi mdi-alert-octagon font-18 vertical-middle"></i></button>
<button class="btn btn-light waves-effect" type="button"><i class="mdi mdi-delete-variant font-18 vertical-middle"></i></button>
</div>
<div class="btn-group">
<button aria-expanded="false" data-toggle="dropdown" class="btn btn-light dropdown-toggle waves-effect" type="button">
<i class="mdi mdi-folder font-18 vertical-middle"></i>
<b class="caret m-l-5"></b>
</button>
<div class="dropdown-menu">
<span class="dropdown-header">Move to</span>
<a href="javascript: void(0);" class="dropdown-item">Social</a>
<a href="javascript: void(0);" class="dropdown-item">Promotions</a>
<a href="javascript: void(0);" class="dropdown-item">Updates</a>
<a href="javascript: void(0);" class="dropdown-item">Forums</a>
</div>
</div>
<div class="btn-group">
<button aria-expanded="false" data-toggle="dropdown" class="btn btn-light dropdown-toggle waves-effect" type="button">
<i class="mdi mdi-label font-18 vertical-middle"></i>
<b class="caret m-l-5"></b>
</button>
<div class="dropdown-menu">
<span class="dropdown-header">Label as:</span>
<a href="javascript: void(0);" class="dropdown-item">Updates</a>
<a href="javascript: void(0);" class="dropdown-item">Social</a>
<a href="javascript: void(0);" class="dropdown-item">Promotions</a>
<a href="javascript: void(0);" class="dropdown-item">Forums</a>
</div>
</div>
<div class="btn-group">
<button aria-expanded="false" data-toggle="dropdown" class="btn btn-light dropdown-toggle waves-effect" type="button">
More
<span class="caret m-l-5"></span>
</button>
<div class="dropdown-menu">
<span class="dropdown-header">More Option :</span>
<a href="javascript: void(0);" class="dropdown-item">Mark as Unread</a>
<a href="javascript: void(0);" class="dropdown-item">Add to Tasks</a>
<a href="javascript: void(0);" class="dropdown-item">Add Star</a>
<a href="javascript: void(0);" class="dropdown-item">Mute</a>
</div>
</div>
</div>
<div class="">
<div class="mt-4">
<div class="">
<ul class="message-list">
<li class="unread">
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk1">
<label class="toggle" for="chk1"></label>
</div>
<p class="title">Lucas Kriebel (via Twitter)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Lucas Kriebel (@LucasKriebel) has sent you a direct message on Twitter! –
<span class="teaser">@LucasKriebel - Very cool :) Nicklas, You have a new direct message.</span>
</div>
<div class="date">11:49 am</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk3">
<label class="toggle" for="chk3"></label>
</div>
<p class="title">Randy, me (5)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Last pic over my village –
<span class="teaser">Yeah i'd like that! Do you remember the video you showed me of your train ride between Colombo and Kandy? The one with the mountain view? I would love to see that one again!</span>
</div>
<div class="date">5:01 am</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk4">
<label class="toggle" for="chk4"></label>
</div>
<p class="title">Andrew Zimmer</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Mochila Beta: Subscription Confirmed – <span class="teaser">You've been confirmed! Welcome to the ruling class of the inbox. For your records, here is a copy of the information you submitted to us...</span>
</div>
<div class="date">Mar 8</div>
</div>
</a>
</li>
<li class="unread">
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk5">
<label class="toggle" for="chk5"></label>
</div>
<p class="title">Infinity HR</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Sveriges Hetaste sommarjobb –
<span class="teaser">Hej Nicklas Sandell! Vi vill bjuda in dig till "First tour 2014", ett rekryteringsevent som erbjuder jobb på 16 semesterorter iSverige.</span>
</div>
<div class="date">Mar 8</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk6">
<label class="toggle" for="chk6"></label>
</div>
<p class="title">Web Support Dennis</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Re: New mail settings –
<span class="teaser">Will you answer him asap?</span>
</div>
<div class="date">Mar 7</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk7">
<label class="toggle" for="chk7"></label>
</div>
<p class="title">me, Peter (2)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Off on Thursday –
<span class="teaser">Eff that place, you might as well stay here with us instead! Sent from my iPhone 4 > 4 mar 2014 at 5:55 pm</span>
</div>
<div class="date">Mar 4</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk8">
<label class="toggle" for="chk8"></label>
</div>
<p class="title">Medium</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">This Week's Top Stories –
<span class="teaser">Our top pick for you on Medium this week The Man Who Destroyed America’s Ego</span>
</div>
<div class="date">Feb 28</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk9">
<label class="toggle" for="chk9"></label>
</div>
<p class="title">Death to Stock</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Montly High-Res Photos –
<span class="teaser">To create this month's pack, we hosted a party with local musician Jared Mahone here in Columbus, Ohio.</span>
</div>
<div class="date">Feb 28</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk10">
<label class="toggle" for="chk10"></label>
</div>
<p class="title">Revibe</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Weekend on Revibe –
<span class="teaser">Today's Friday and we thought maybe you want some music inspiration for the weekend. Here are some trending tracks and playlists we think you should give a listen!</span>
</div>
<div class="date">Feb 27</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk11">
<label class="toggle" for="chk11"></label>
</div>
<p class="title">Erik, me (5)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Regarding our meeting –
<span class="teaser">That's great, see you on Thursday!</span>
</div>
<div class="date">Feb 24</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk12">
<label class="toggle" for="chk12"></label>
</div>
<p class="title">KanbanFlow</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Task assigned: Clone ARP's website – <span class="teaser">You have been assigned a task by Alex@Work on the board Web.</span>
</div>
<div class="date">Feb 24</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk13">
<label class="toggle" for="chk13"></label>
</div>
<p class="title">Tobias Berggren</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Let's go fishing! –
<span class="teaser">Hey, You wanna join me and Fred at the lake tomorrow? It'll be awesome.</span>
</div>
<div class="date">Feb 23</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk14">
<label class="toggle" for="chk14"></label>
</div>
<p class="title">Charukaw, me (7)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Hey man – <span class="teaser">Nah man sorry i don't. Should i get it?</span>
</div>
<div class="date">Feb 23</div>
</div>
</a>
</li>
<li class="unread">
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk15">
<label class="toggle" for="chk15"></label>
</div>
<p class="title">me, Peter (5)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Home again! – <span class="teaser">That's just perfect! See you tomorrow.</span>
</div>
<div class="date">Feb 21</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk16">
<label class="toggle" for="chk16"></label>
</div>
<p class="title">Stack Exchange</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">1 new items in your Stackexchange inbox – <span class="teaser">The following items were added to your Stack Exchange global inbox since you last checked it.</span>
</div>
<div class="date">Feb 21</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk17">
<label class="toggle" for="chk17"></label>
</div>
<p class="title">Google Drive Team</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">You can now use your storage in Google Drive – <span class="teaser">Hey Nicklas Sandell! Thank you for purchasing extra storage space in Google Drive.</span>
</div>
<div class="date">Feb 20</div>
</div>
</a>
</li>
<li class="unread">
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk18">
<label class="toggle" for="chk18"></label>
</div>
<p class="title">me, Susanna (11)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Train/Bus – <span class="teaser">Yes ok, great! I'm not stuck in Stockholm anymore, we're making progress.</span>
</div>
<div class="date">Feb 19</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk19">
<label class="toggle" for="chk19"></label>
</div>
<p class="title">Peter, me (3)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Hello – <span class="teaser">Trip home from Colombo has been arranged, then Jenna will come get me from Stockholm. :)</span>
</div>
<div class="date">Mar. 6</div>
</div>
</a>
</li>
<li>
<a href="email-read.html">
<div class="col-mail col-mail-1">
<div class="checkbox-wrapper-mail">
<input type="checkbox" id="chk20">
<label class="toggle" for="chk20"></label>
</div>
<p class="title">me, Susanna (7)</p><span class="star-toggle fa fa-star-o"></span>
</div>
<div class="col-mail col-mail-2">
<div class="subject">Since you asked... and i'm inconceivably bored at the train station –
<span class="teaser">Alright thanks. I'll have to re-book that somehow, i'll get back to you.</span>
</div>
<div class="date">Mar. 6</div>
</div>
</a>
</li>
</ul>
</div>
</div>
<!-- panel body -->
</div>
<!-- panel -->
<div class="row">
<div class="col-7">
Showing 1 - 20 of 289
</div>
<div class="col-5">
<div class="btn-group float-right">
<button class="btn btn-gradient waves-effect" type="button"><i class="fa fa-chevron-left"></i></button>
<button class="btn btn-gradient waves-effect" type="button"><i class="fa fa-chevron-right"></i></button>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
<!-- End PAge Content -->
</div>
<!-- End Container fluid -->
<!-- footer -->
<footer class="footer"> © 2018 All rights reserved. Template designed by <a href="https://colorlib.com">Colorlib</a></footer>
<!-- End footer -->
</div>
<!-- End Page wrapper -->
</div>
<!-- End Wrapper -->
<!-- All Jquery -->
<script src="js/lib/jquery/jquery.min.js"></script>
<!-- Bootstrap tether Core JavaScript -->
<script src="js/lib/bootstrap/js/popper.min.js"></script>
<script src="js/lib/bootstrap/js/bootstrap.min.js"></script>
<!-- slimscrollbar scrollbar JavaScript -->
<script src="js/jquery.slimscroll.js"></script>
<!--Menu sidebar -->
<script src="js/sidebarmenu.js"></script>
<!--stickey kit -->
<script src="js/lib/sticky-kit-master/dist/sticky-kit.min.js"></script>
<!--Custom JavaScript -->
<script src="js/custom.min.js"></script>
</body>
</html>