-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin.html
More file actions
59 lines (54 loc) · 1.05 KB
/
admin.html
File metadata and controls
59 lines (54 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Admin Panel</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f2f5;
}
.container {
width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
margin-bottom: 20px;
}
.welcome-msg {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
.btn-logout {
display: block;
width: 100%;
padding: 10px;
text-align: center;
font-weight: bold;
color: #fff;
background-color: #e74c3c;
border: none;
border-radius: 3px;
cursor: pointer;
}
.btn-logout:hover {
background-color: #c0392b;
}
</style>
</head>
<body>
<div class="container">
<h2>Admin Panel</h2>
<div class="welcome-msg">
Welcome Admin
</div>
<button class="btn-logout">Logout</button>
</div>
</body>
</html>