-
Notifications
You must be signed in to change notification settings - Fork 8
/
ui-alert.html
1293 lines (1258 loc) · 92.3 KB
/
ui-alert.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Focus - Bootstrap Admin Dashboard </title>
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon.png">
<link href="./css/style.css" rel="stylesheet">
</head>
<body>
<!--*******************
Preloader start
********************-->
<div id="preloader">
<div class="sk-three-bounce">
<div class="sk-child sk-bounce1"></div>
<div class="sk-child sk-bounce2"></div>
<div class="sk-child sk-bounce3"></div>
</div>
</div>
<!--*******************
Preloader end
********************-->
<!--**********************************
Main wrapper start
***********************************-->
<div id="main-wrapper">
<!--**********************************
Nav header start
***********************************-->
<div class="nav-header">
<a href="index.html" class="brand-logo">
<img class="logo-abbr" src="./images/logo.png" alt="">
<img class="logo-compact" src="./images/logo-text.png" alt="">
<img class="brand-title" src="./images/logo-text.png" alt="">
</a>
<div class="nav-control">
<div class="hamburger">
<span class="line"></span><span class="line"></span><span class="line"></span>
</div>
</div>
</div>
<!--**********************************
Nav header end
***********************************-->
<!--**********************************
Header start
***********************************-->
<div class="header">
<div class="header-content">
<nav class="navbar navbar-expand">
<div class="collapse navbar-collapse justify-content-between">
<div class="header-left">
<div class="search_bar dropdown">
<span class="search_icon p-3 c-pointer" data-toggle="dropdown">
<i class="mdi mdi-magnify"></i>
</span>
<div class="dropdown-menu p-0 m-0">
<form>
<input class="form-control" type="search" placeholder="Search" aria-label="Search">
</form>
</div>
</div>
</div>
<ul class="navbar-nav header-right">
<li class="nav-item dropdown notification_dropdown">
<a class="nav-link" href="#" role="button" data-toggle="dropdown">
<i class="mdi mdi-bell"></i>
<div class="pulse-css"></div>
</a>
<div class="dropdown-menu dropdown-menu-right">
<ul class="list-unstyled">
<li class="media dropdown-item">
<span class="success"><i class="ti-user"></i></span>
<div class="media-body">
<a href="#">
<p><strong>Martin</strong> has added a <strong>customer</strong> Successfully
</p>
</a>
</div>
<span class="notify-time">3:20 am</span>
</li>
<li class="media dropdown-item">
<span class="primary"><i class="ti-shopping-cart"></i></span>
<div class="media-body">
<a href="#">
<p><strong>Jennifer</strong> purchased Light Dashboard 2.0.</p>
</a>
</div>
<span class="notify-time">3:20 am</span>
</li>
<li class="media dropdown-item">
<span class="danger"><i class="ti-bookmark"></i></span>
<div class="media-body">
<a href="#">
<p><strong>Robin</strong> marked a <strong>ticket</strong> as unsolved.
</p>
</a>
</div>
<span class="notify-time">3:20 am</span>
</li>
<li class="media dropdown-item">
<span class="primary"><i class="ti-heart"></i></span>
<div class="media-body">
<a href="#">
<p><strong>David</strong> purchased Light Dashboard 1.0.</p>
</a>
</div>
<span class="notify-time">3:20 am</span>
</li>
<li class="media dropdown-item">
<span class="success"><i class="ti-image"></i></span>
<div class="media-body">
<a href="#">
<p><strong> James.</strong> has added a<strong>customer</strong> Successfully
</p>
</a>
</div>
<span class="notify-time">3:20 am</span>
</li>
</ul>
<a class="all-notification" href="#">See all notifications <i
class="ti-arrow-right"></i></a>
</div>
</li>
<li class="nav-item dropdown header-profile">
<a class="nav-link" href="#" role="button" data-toggle="dropdown">
<i class="mdi mdi-account"></i>
</a>
<div class="dropdown-menu dropdown-menu-right">
<a href="./app-profile.html" class="dropdown-item">
<i class="icon-user"></i>
<span class="ml-2">Profile </span>
</a>
<a href="./email-inbox.html" class="dropdown-item">
<i class="icon-envelope-open"></i>
<span class="ml-2">Inbox </span>
</a>
<a href="./page-login.html" class="dropdown-item">
<i class="icon-key"></i>
<span class="ml-2">Logout </span>
</a>
</div>
</li>
</ul>
</div>
</nav>
</div>
</div>
<!--**********************************
Header end ti-comment-alt
***********************************-->
<!--**********************************
Sidebar start
***********************************-->
<div class="quixnav">
<div class="quixnav-scroll">
<ul class="metismenu" id="menu">
<li class="nav-label first">Main Menu</li>
<!-- <li><a href="index.html"><i class="icon icon-single-04"></i><span class="nav-text">Dashboard</span></a>
</li> -->
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-single-04"></i><span class="nav-text">Dashboard</span></a>
<ul aria-expanded="false">
<li><a href="./index.html">Dashboard 1</a></li>
<li><a href="./index2.html">Dashboard 2</a></li></ul>
</li>
<li class="nav-label">Apps</li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-app-store"></i><span class="nav-text">Apps</span></a>
<ul aria-expanded="false">
<li><a href="./app-profile.html">Profile</a></li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false">Email</a>
<ul aria-expanded="false">
<li><a href="./email-compose.html">Compose</a></li>
<li><a href="./email-inbox.html">Inbox</a></li>
<li><a href="./email-read.html">Read</a></li>
</ul>
</li>
<li><a href="./app-calender.html">Calendar</a></li>
</ul>
</li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-chart-bar-33"></i><span class="nav-text">Charts</span></a>
<ul aria-expanded="false">
<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-sparkline.html">Sparkline</a></li>
<li><a href="./chart-peity.html">Peity</a></li>
</ul>
</li>
<li class="nav-label">Components</li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-world-2"></i><span class="nav-text">Bootstrap</span></a>
<ul aria-expanded="false">
<li><a href="./ui-accordion.html">Accordion</a></li>
<li><a href="./ui-alert.html">Alert</a></li>
<li><a href="./ui-badge.html">Badge</a></li>
<li><a href="./ui-button.html">Button</a></li>
<li><a href="./ui-modal.html">Modal</a></li>
<li><a href="./ui-button-group.html">Button Group</a></li>
<li><a href="./ui-list-group.html">List Group</a></li>
<li><a href="./ui-media-object.html">Media Object</a></li>
<li><a href="./ui-card.html">Cards</a></li>
<li><a href="./ui-carousel.html">Carousel</a></li>
<li><a href="./ui-dropdown.html">Dropdown</a></li>
<li><a href="./ui-popover.html">Popover</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="./ui-pagination.html">Pagination</a></li>
<li><a href="./ui-grid.html">Grid</a></li>
</ul>
</li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-plug"></i><span class="nav-text">Plugins</span></a>
<ul aria-expanded="false">
<li><a href="./uc-select2.html">Select 2</a></li>
<li><a href="./uc-nestable.html">Nestedable</a></li>
<li><a href="./uc-noui-slider.html">Noui Slider</a></li>
<li><a href="./uc-sweetalert.html">Sweet Alert</a></li>
<li><a href="./uc-toastr.html">Toastr</a></li>
<li><a href="./map-jqvmap.html">Jqv Map</a></li>
</ul>
</li>
<li><a href="widget-basic.html" aria-expanded="false"><i class="icon icon-globe-2"></i><span
class="nav-text">Widget</span></a></li>
<li class="nav-label">Forms</li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-form"></i><span class="nav-text">Forms</span></a>
<ul aria-expanded="false">
<li><a href="./form-element.html">Form Elements</a></li>
<li><a href="./form-wizard.html">Wizard</a></li>
<li><a href="./form-editor-summernote.html">Summernote</a></li>
<li><a href="form-pickers.html">Pickers</a></li>
<li><a href="form-validation-jquery.html">Jquery Validate</a></li>
</ul>
</li>
<li class="nav-label">Table</li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-layout-25"></i><span class="nav-text">Table</span></a>
<ul aria-expanded="false">
<li><a href="table-bootstrap-basic.html">Bootstrap</a></li>
<li><a href="table-datatable-basic.html">Datatable</a></li>
</ul>
</li>
<li class="nav-label">Extra</li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false"><i
class="icon icon-single-copy-06"></i><span class="nav-text">Pages</span></a>
<ul aria-expanded="false">
<li><a href="./page-register.html">Register</a></li>
<li><a href="./page-login.html">Login</a></li>
<li><a class="has-arrow" href="javascript:void()" aria-expanded="false">Error</a>
<ul aria-expanded="false">
<li><a href="./page-error-400.html">Error 400</a></li>
<li><a href="./page-error-403.html">Error 403</a></li>
<li><a href="./page-error-404.html">Error 404</a></li>
<li><a href="./page-error-500.html">Error 500</a></li>
<li><a href="./page-error-503.html">Error 503</a></li>
</ul>
</li>
<li><a href="./page-lock-screen.html">Lock Screen</a></li>
</ul>
</li>
</ul>
</div>
</div>
<!--**********************************
Sidebar end
***********************************-->
<!--**********************************
Content body start
***********************************-->
<div class="content-body">
<div class="container-fluid">
<div class="row page-titles mx-0">
<div class="col-sm-6 p-md-0">
<div class="welcome-text">
<h4>Hi, welcome back!</h4>
<p class="mb-0">Your business dashboard template</p>
</div>
</div>
<div class="col-sm-6 p-md-0 justify-content-sm-end mt-2 mt-sm-0 d-flex">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="javascript:void(0)">Bootstrap</a></li>
<li class="breadcrumb-item active"><a href="javascript:void(0)">Alert</a></li>
</ol>
</div>
</div>
<!-- row -->
<div class="row">
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Basic Alerts</h4>
<p class="subtitle mb-0">Bootstrap default style</p>
</div>
<div class="card-body">
<div class="alert alert-primary"><strong>Welcome!</strong> Message has been sent.</div>
<div class="alert alert-secondary"><strong>Done!</strong> Your profile photo updated.
</div>
<div class="alert alert-success"><strong>Success!</strong> Message has been sent.</div>
<div class="alert alert-info"><strong>Info!</strong> You have got 5 new email.</div>
<div class="alert alert-warning"><strong>Warning!</strong> Something went wrong. Please check.
</div>
<div class="alert alert-danger"><strong>Error!</strong> Message sending failed.</div>
<div class="alert alert-dark"><strong>Error!</strong> You successfully read this important alert message.</div>
<div class="alert alert-light"><strong>Error!</strong> You successfully read this message..
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Solid color alerts</h4>
<p class="subtitle mb-0">add <code>.solid</code> class to change the solid color.</p>
</div>
<div class="card-body">
<div class="alert alert-primary solid "><strong>Welcome!</strong> Message has been sent.
</div>
<div class="alert alert-secondary solid"><strong>Done!</strong> Your profile photo updated.
</div>
<div class="alert alert-success solid "><strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-info solid "><strong>Info!</strong> You have got 5 new email.
</div>
<div class="alert alert-warning solid "><strong>Warning!</strong> Something went wrong. Please check.</div>
<div class="alert alert-danger solid "><strong>Error!</strong> Message sending failed.
</div>
<div class="alert alert-dark solid"><strong>Error!</strong> You successfully read this important alert message.</div>
<div class="alert alert-light solid"><strong>Error!</strong> You successfully read this message..
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Square alerts</h4>
<p class="mb-0 subtitle">add <code>.alert-square</code> class to change the solid color.
</p>
</div>
<div class="card-body">
<div class="alert alert-primary solid alert-square"><strong>Welcome!</strong> Message has been sent.</div>
<div class="alert alert-secondary solid alert-square"><strong>Done!</strong> Your profile photo updated.</div>
<div class="alert alert-success solid alert-square "><strong>Success!</strong> Message has been sent.</div>
<div class="alert alert-info solid alert-square "><strong>Info!</strong> You have got 5 new email.</div>
<div class="alert alert-warning solid alert-square "><strong>Warning!</strong> Something went wrong. Please check.</div>
<div class="alert alert-danger solid alert-square "><strong>Error!</strong> Message sending failed.</div>
<div class="alert alert-dark solid alert-square"><strong>Error!</strong> You successfully read this important alert message.</div>
<div class="alert alert-light solid alert-square"><strong>Error!</strong> You successfully read this message..</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Rounded alerts</h4>
<p class="mb-0 subtitle">add <code>.alert-rounded</code> class to change the solid color.
</p>
</div>
<div class="card-body">
<div class="alert alert-primary solid alert-rounded"><strong>Welcome!</strong> Message has been sent.</div>
<div class="alert alert-secondary solid alert-rounded"><strong>Done!</strong> Your profile photo updated.</div>
<div class="alert alert-success solid alert-rounded "><strong>Success!</strong> Message has been sent.</div>
<div class="alert alert-info solid alert-rounded "><strong>Info!</strong> You have got 5 new email.</div>
<div class="alert alert-warning solid alert-rounded "><strong>Warning!</strong> Something went wrong. Please check.</div>
<div class="alert alert-danger solid alert-rounded "><strong>Error!</strong> Message sending failed.</div>
<div class="alert alert-dark solid alert-rounded"><strong>Error!</strong> You successfully read this important alert message.</div>
<div class="alert alert-light solid alert-rounded"><strong>Error!</strong> You successfully read this message..</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Dismissable Alerts</h4>
<p class="subtitle mb-0">Bootstrap default style</p>
</div>
<div class="card-body">
<div class="alert alert-primary alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-secondary alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-success alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-info alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Info!</strong> You have got 5 new email.
</div>
<div class="alert alert-warning alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Something went wrong. Please check.
</div>
<div class="alert alert-danger alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-dark alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-light alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Alerts alt</h4>
<p class="mb-0 subtitle">add <code>.alert-alt</code> class to change the solid color.
</p>
</div>
<div class="card-body">
<div class="alert alert-primary alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-secondary alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-success alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-info alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Info!</strong> You have got 5 new email.
</div>
<div class="alert alert-warning alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Something went wrong. Please check.
</div>
<div class="alert alert-danger alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-dark alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-light alert-dismissible alert-alt fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Solid Alt</h4>
<p class="mb-0 subtitle">add <code>.alert-alt.solid</code> class to change the solid color.
</p>
</div>
<div class="card-body">
<div class="alert alert-primary alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-secondary alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-success alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-info alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Info!</strong> You have got 5 new email.
</div>
<div class="alert alert-warning alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Something went wrong. Please check.
</div>
<div class="alert alert-danger alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-dark alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-light alert-dismissible alert-alt solid fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Dismissable with solid</h4>
<p class="mb-0 subtitle">add <code>.solid</code> class to change the solid color.</p>
</div>
<div class="card-body">
<div class="alert alert-primary solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-secondary solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-success solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Success!</strong> Message has been sent.
</div>
<div class="alert alert-info solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Info!</strong> You have got 5 new email.
</div>
<div class="alert alert-warning solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Something went wrong. Please check.
</div>
<div class="alert alert-danger solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-dark solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-light solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Alert with Link</h4>
<p class="mb-0 subtitle">Bootstrap default style</p>
</div>
<div class="card-body">
<div class="alert alert-primary alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>WOW! Eveything looks OK.</strong> <a href="#">Please check this one as
well</a>
</div>
<div class="alert alert-secondary alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>WOW! Eveything looks OK.</strong> <a href="#">Please check this one as
well</a>
</div>
<div class="alert alert-success alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>WOW! Eveything looks OK.</strong> <a href="#">Please check this one as
well</a>
</div>
<div class="alert alert-info alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Hey! Take a quick look.</strong> <a href="#">My birthday party</a>
</div>
<div class="alert alert-warning alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Why you did it to me! <a href="#">Check this out</a>
</div>
<div class="alert alert-danger alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Something Went wrong <a href="#">Click here for details.</a>
</div>
<div class="alert alert-dark alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Something Went wrong <a href="#">Click here for details.</a>
</div>
<div class="alert alert-light alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Something Went wrong <a href="#">Click here for details.</a>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Alert with Link and solid color</h4>
<p class="mb-0 subtitle">add <code>.solid</code> class to change the solid color.</p>
</div>
<div class="card-body">
<div class="alert alert-primary solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> WOW! Eveything looks OK. <a href="#" class="btn btn-sm btn-light text-primary ml-3">upgrade</a>
</div>
<div class="alert alert-secondary solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> WOW! Eveything looks OK. <a href="#" class="btn btn-sm btn-light text-secondary ml-3">upgrade</a>
</div>
<div class="alert alert-success solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> WOW! Eveything looks OK. <a href="#" class="btn btn-sm btn-light text-success ml-3">upgrade</a>
</div>
<div class="alert alert-info solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Hey! Take a quick look. <a href="#" class="btn btn-sm btn-light text-info ml-3">upgrade</a>
</div>
<div class="alert alert-warning solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Why you did it to me! <a href="#" class="btn btn-sm btn-light text-warning ml-3">upgrade</a>
</div>
<div class="alert alert-danger solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Something Went wrong <a href="#" class="btn btn-sm btn-light text-danger ml-3">upgrade</a>
</div>
<div class="alert alert-dark solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Something Went wrong <a href="#" class="btn btn-sm btn-light text-dark ml-3">upgrade</a>
</div>
<div class="alert alert-light solid alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Something Went wrong <a href="#" class="btn btn-sm btn-light text-dark ml-3">upgrade</a>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Inline Notifications</h4>
<p class="mb-0 subtitle">Default inline notification</p>
</div>
<div class="card-body">
<div class="row">
<div class="col-xl-6">
<div class="alert alert-primary notification">
<p class="notificaiton-title"><strong>Success!</strong> Vampires The Romantic Ideology Behind Them</p>
<p>The following article covers a topic that has recently moved to center stage-at lease it seems that way.</p>
<button class="btn btn-primary btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-secondary notification">
<p class="notificaiton-title"><strong>Success!</strong> Vampires The Romantic Ideology Behind Them</p>
<p>The following article covers a topic that has recently moved to center stage-at lease it seems that way.</p>
<button class="btn btn-secondary btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-success notification">
<p class="notificaiton-title"><strong>Success!</strong> Vampires The Romantic Ideology Behind Them</p>
<p>The following article covers a topic that has recently moved to center stage-at lease it seems that way.</p>
<button class="btn btn-success btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-info notification">
<p class="notificaiton-title"><strong>Success!</strong> Vampires The Romantic Ideology Behind Them</p>
<p>The following article covers a topic that has recently moved to center stage-at lease it seems that way.</p>
<button class="btn btn-info btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-warning notification">
<p class="notificaiton-title"><strong>Success!</strong> Vampires The Romantic Ideology Behind Them</p>
<p>The following article covers a topic that has recently moved to center stage-at lease it seems that way.</p>
<button class="btn btn-warning btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-danger notification">
<p class="notificaiton-title"><strong>Danger! </strong> Religion And Science
</p>
<p>What is the loop of Creation? How is there something from nothing? In spite of the fact.. </p>
<button class="btn btn-danger btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-dark notification">
<p class="notificaiton-title"><strong>Danger! </strong> Religion And Science
</p>
<p>What is the loop of Creation? How is there something from nothing? In spite of the fact.. </p>
<button class="btn btn-dark btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-light notification">
<p class="notificaiton-title"><strong>Danger! </strong> Religion And Science
</p>
<p>What is the loop of Creation? How is there something from nothing? In spite of the fact.. </p>
<button class="btn btn-light btn-sm rounded-0">Confirm</button>
<button class="btn btn-link btn-sm">Cancel</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Alert Icon Left</h4>
<p class="mb-0 subtitle">add <code>.alert-right-icon</code> to change the style</p>
</div>
<div class="card-body">
<div class="alert alert-primary solid alert-right-icon alert-dismissible fade show">
<span><i class="mdi mdi-account-search"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Success! Message has been sent.
</div>
<div class="alert alert-secondary solid alert-right-icon alert-dismissible fade show">
<span><i class="icon icon-bell-53"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Success! Message has been sent.
</div>
<div class="alert alert-success solid alert-right-icon alert-dismissible fade show">
<span><i class="mdi mdi-check"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Success! Message has been sent.
</div>
<div class="alert alert-info solid alert-right-icon alert-dismissible fade show">
<span><i class="mdi mdi-email"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Info! You have got 5 new email.
</div>
<div class="alert alert-warning solid alert-right-icon alert-dismissible fade show">
<span><i class="mdi mdi-alert"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Something went wrong. Please check.
</div>
<div class="alert alert-danger solid alert-right-icon alert-dismissible fade show">
<span><i class="mdi mdi-help"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-dark solid alert-right-icon alert-dismissible fade show">
<span><i class="mdi mdi-settings"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-light solid alert-right-icon alert-dismissible fade show">
<span><i class="mdi mdi-cogs"></i></span>
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Alert outline</h4>
<p class="mb-0 subtitle">add <code>.alert-outline-primary,secondary,success...</code> to change the style</p>
</div>
<div class="card-body">
<div class="alert alert-outline-primary alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Success! Message has been sent.
</div>
<div class="alert alert-outline-secondary alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Success! Message has been sent.
</div>
<div class="alert alert-outline-success alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Success! Message has been sent.
</div>
<div class="alert alert-outline-info alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button> Info! You have got 5 new email.
</div>
<div class="alert alert-outline-warning alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Warning!</strong> Something went wrong. Please check.
</div>
<div class="alert alert-outline-danger alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-outline-dark alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
<div class="alert alert-outline-light alert-dismissible fade show">
<button type="button" class="close h-100" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<strong>Error!</strong> Message Sending failed.
</div>
</div>
</div>
</div>
<div class="col-xl-12 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Alert Social</h4>
<p class="mb-0 subtitle">add <code>.alert-social
.facebook,.twitter,.linkedin,.google-plus</code> to change the style</p>
</div>
<div class="card-body">
<div class="row">
<div class="col-xl-6">
<div class="alert alert-social facebook alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<div class="media">
<div class="alert-social-icon">
<span><i class="mdi mdi-facebook"></i></span>
</div>
<div class="media-body">
<h5 class="mt-1 mb-1">Facebook</h5>
<p>Cras sit amet nibh libero, in gravida nulla. tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.</p>
</div>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-social twitter alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<div class="media">
<div class="alert-social-icon">
<span><i class="mdi mdi-twitter"></i></span>
</div>
<div class="media-body">
<h5 class="mt-1 mb-1">Twitter</h5>
<p>Cras sit amet nibh libero, in gravida nulla. tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.</p>
</div>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-social linkedin alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<div class="media">
<div class="alert-social-icon">
<span><i class="mdi mdi-linkedin"></i></span>
</div>
<div class="media-body">
<h5 class="mt-1 mb-1">Linkedin</h5>
<p>Cras sit amet nibh libero, in gravida nulla. tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.</p>
</div>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-social google-plus alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<div class="media">
<div class="alert-social-icon">
<span><i class="mdi mdi-google-plus"></i></span>
</div>
<div class="media-body">
<h5 class="mt-1 mb-1">Google Plus</h5>
<p>Cras sit amet nibh libero, in gravida nulla. tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-12 col-xxl-12">
<div class="card">
<div class="card-header d-block">
<h4 class="card-title">Message Alert</h4>
<p class="subtitle mb-0">Bootstrap default style</p>
</div>
<div class="card-body">
<div class="row">
<div class="col-xl-6">
<div class="alert alert-primary alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<div class="media">
<div class="media-body">
<h5 class="mt-1 mb-1">Notifications</h5>
<p>Cras sit amet nibh libero, in gravida nulla. tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.</p>
</div>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-secondary alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<div class="media">
<div class="media-body">
<h5 class="mt-1 mb-1">Notifications</h5>
<p>Cras sit amet nibh libero, in gravida nulla. tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.</p>
</div>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-success alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>
</button>
<div class="media">
<div class="media-body">
<h5 class="mt-1 mb-1">Notifications</h5>
<p>Cras sit amet nibh libero, in gravida nulla. tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.</p>
</div>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="alert alert-info alert-dismissible fade show">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span><i class="mdi mdi-close"></i></span>