-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotification.html
46 lines (46 loc) · 1.84 KB
/
notification.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link rel="shortcut icon" type="image/png" href="../images/favicon.png">
<link href="../css/message.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css">
<!------ Include the above in your HEAD tag ---------->
<title>Login Form</title>
</head>
<style>
body { margin-top:30px; }
hr.message-inner-separator
{
clear: both;
margin-top: 20px;
margin-bottom: 20px;
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
}
.container{
position: absolute;
left: 30%;
}
</style>
<body>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-6">
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">
x</button>
<span class="glyphicon glyphicon-ok"></span> <strong>Thông Báo Thành Công</strong>
<hr class="message-inner-separator">
<p>
Email đã được gửi đi! Vui lòng kiểm tra hộp thư đến email của bạn. Xin vui lòng đóng trang này!<i class="fas fa-envelope" style="color: black;"></i></p>
</div>
</div>
</body>
</html>