-
Notifications
You must be signed in to change notification settings - Fork 18
/
alert.html
124 lines (120 loc) · 6.27 KB
/
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
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<link rel="image_src" type="image/jpeg" href="/images/logo.png" />
<link rel="icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<!-- Site Properities -->
<meta name="generator" content="Visual Studio 2015" />
<title>Alert | Golgi Admin</title>
<meta name="description" content="Golgi Admin Theme" />
<meta name="keywords" content="html5, ,semantic,ui, library, framework, javascript,jquery,admin,theme" />
<link href="dist/semantic.min.css" rel="stylesheet" />
<link href="plugins/sweetalert/sweetalert.css" rel="stylesheet" />
<link href="css/main.min.css" rel="stylesheet" />
<link href="plugins/pacejs/pace.css" rel="stylesheet" />
<script src="js/jquery-2.1.4.min.js"></script>
</head>
<body class="admin">
<!--sidebar mobile-->
<div class="ui vertical push sidebar menu thin" id="toc">
</div>
<!--sidebar mobile-->
<!--navbar mobile-->
<div class="mobilenavbar">
</div>
<!--navbar mobile-->
<div class="pusher">
<div class="full height">
<!--Load Sidebar Menu In App.js loadhtml function-->
<div class="toc"></div>
<!--Load Sidebar Menu In App.js loadhtml function-->
<div class="article">
<!--Load Navbar Menu In App.js loadhtml function-->
<div class="navbarmenu"></div>
<!--Load Navbar Menu In App.js loadhtml function-->
<!--Begin Container-->
<div class="containerli">
<div class="ui equal width left aligned padded grid stackable">
<div class="row">
<div class="column">
<div class="ui segments">
<div class="ui segment">
<h5 class="ui header">
Basic Alert
</h5>
</div>
<div class="ui segment">
<button class="ui red button swtalrt1">Basic Message</button>
<button class="ui blue button swtalrt2">Title and Header</button>
<button class="ui green button swtalrt3">Success</button>
<button class="ui orange button swtalrt4">Confirm</button>
</div>
</div>
</div>
<div class="column">
<div class="ui segments">
<div class="ui segment">
<h5 class="ui header">
Iconable Alert
</h5>
</div>
<div class="ui segment">
<button class="ui red button swtalrt" data-type="error">Error Message</button>
<button class="ui blue button swtalrt" data-type="info">Info Message</button>
<button class="ui green button swtalrt" data-type="success">Info Message</button>
<button class="ui orange button swtalrt" data-type="warning">Info Message</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="column">
<div class="ui segments">
<div class="ui segment">
<h5 class="ui header">
Alert Variations
</h5>
</div>
<div class="ui segment">
<button class="ui red button swtalrt5">Custom Image</button>
<button class="ui blue button swtalrt6">Custom Html Message</button>
<button class="ui green button swtalrt7">Auto Close Timer</button>
<button class="ui orange button swtalrt8">Prompt Input</button>
</div>
</div>
</div>
<div class="column">
<div class="ui segments">
<div class="ui segment">
<h5 class="ui header">
Alert Variations
</h5>
</div>
<div class="ui segment">
<button class="ui red button swtalrt9">Ajax Request</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Finish Container-->
<!--Load Footer Menu In App.js loadhtml function-->
<div class="footer"></div>
<!--Load Footer Menu In App.js loadhtml function-->
</div>
</div>
</div>
<script src='plugins/nicescrool/jquery.nicescroll.min.js'></script>
<script src="dist/semantic.min.js"></script>
<script src="plugins/sweetalert/sweetalert.min.js"></script>
<script data-pace-options='{ "ajax": false }' src="plugins/pacejs/pace.js"></script>
<script src="js/customjs/custom-alert.js"></script>
<script src="js/app.min.js"></script>
</body>
</html>