-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalerts.html
109 lines (88 loc) · 4.08 KB
/
alerts.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>GK Admin</title>
<script type="text/javascript" src="boot/js/jquery/jquery.js"></script>
<link rel="stylesheet" href="boot/css/bootcss.css"/>
<link rel="stylesheet" href="boot/fontawesome/css/all.css"/>
<script type="text/javascript" src="boot/js/scripts/scripts.js"></script>
</head>
<body>
<div class="left-siderbar">
<header class="left-siderbar-header">
<h4 class="text-white font-weight-normal">Gk Admin</h4>
<img src="boot/img/image-empty.jpg" width="100" height="100">
</header>
<div class="left-siderbar-content">
<ul>
<li><a href="#">
<span class="icon"><i class="fas fa-desktop"></i></span>
<span class="title">Dashboard</span>
</a></li>
<li><a href="botoes.html">
<span class="icon"><i class="fas fa-book"></i></span>
<span class="title">Botões</span>
</a></li>
<li><a href="formularios.html">
<span class="icon"><i class="fas fa-pencil-ruler"></i></span>
<span class="title">Formularios</span>
</a></li>
<li><a href="alerts.html">
<span class="icon"><i class="fas fa-bell"></i></span>
<span class="title">Formularios</span>
</a></li>
<li><a href="#">
<span class="icon"><i class="fas fa-cog"></i></span>
<span class="title">Configurações</span>
</a></li>
</ul>
</div>
</div>
<header class="header-top">
<div class="header-top-content">
<span class="fas fa-bars pointer text-white"></span>
<div class="nav-topbar">
<span class="icon"><a href="#" id="notifyBell" class="text-decoration-none text-white"><i class="fas fa-bell"></i><span id="countNotifiy">5</span></a></span>
<span><a href="#" class="text-decoration-none text-white"><i class="fas fa-sign-out-alt"></i>Sair</a></span>
</div>
<div class="notify-box">
<div class="notify-box-content">
<div class="notify-item" style="margin-bottom: 5px">
<p class="desc" style="margin-bottom: 5px">is simply dummy text of the printing and typesetting</p>
<p id="hour" align="right"><small><i class="fas fa-hourglass"> 08:52</i></small></p>
</div>
<div class="notify-item" style="margin-bottom: 5px">
<p class="desc" style="margin-bottom: 5px">is simply dummy text of the printing and typesetting</p>
<p id="hour" align="right"><small><i class="fas fa-hourglass"> 08:52</i></small></p>
</div>
<div class="notify-item" style="margin-bottom: 5px">
<p class="desc" style="margin-bottom: 5px">is simply dummy text of the printing and typesetting</p>
<p id="hour" align="right"><small><i class="fas fa-hourglass"> 08:52</i></small></p>
</div>
<div class="notify-item" style="margin-bottom: 5px">
<p class="desc" style="margin-bottom: 5px">is simply dummy text of the printing and typesetting</p>
<p id="hour" align="right"><small><i class="fas fa-hourglass"> 08:52</i></small></p>
</div>
<div class="notify-item" style="margin-bottom: 5px">
<p class="desc" style="margin-bottom: 5px">is simply dummy text of the printing and typesetting</p>
<p id="hour" align="right"><small><i class="fas fa-hourglass"> 08:52</i></small></p>
</div>
</div>
</div>
</div>
</header>
<main class="main">
<div class="main-content">
<div class="item">
<div class="gk-alert success">
<p>Está é a mensagem de sucesso</p>
</div>
<div class="gk-alert danger">
<p>Está é a mensagem de alerta</p>
</div>
</div>
</div>
</main>
</body>
</html>