-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
136 lines (122 loc) · 2.61 KB
/
admin.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADMIN PAGE</title>
<link rel="stylesheet" href="admin.css">
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
background-attachment: fixed;
}
body {
font-family: Arial, sans-serif;
}
.navbar {
margin-top: 130px;
font-size: 30px;
position: relative;
}
.banner {
position: relative;
}
h1 {
font-family: 'Poppins';
font-size: 20px;
text-align: center;
padding: 50px;
}
.bg-image {
width: 100%;
height: 100vh;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.content {
position: relative;
z-index: 1;
}
.navbar {
display: flex;
justify-content: center;
align-items: center;
padding: 15px 20px;
background-color: rgba(244, 184, 184, 0.5);
height: 100px;
}
.navbar ul {
list-style: none;
display: flex;
}
.navbar ul li {
margin-right: 20px;
}
.navbar ul li:last-child {
margin-right: 0;
}
.navbar ul li a {
text-decoration: none;
color: #0d0d0d;
font-weight: bold;
transition: color 0.3s ease;
}
.navbar ul li a:hover {
color: #9fd7fc;
}
.navbar::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 100px;
transform: translateY(-50%);
z-index: -1;
}
.return-btn {
margin: 0px 0px;
margin-bottom: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
width: 30px;
height: 10px;
font-size: 10px;
padding: 2px 8px;
background-color: transparent;
color: #34d3db;
border: 1px solid #34d3db;
float: inline-start;
}
.logout-btn {
display: inline-block;
padding: 2px 8px;
background-color: white;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.logout-btn:hover {
background-color: #0056b3;
}
</style>
<body>
<div class="banner">
<h1 style="color: aliceblue;">ADMIN PAGE</h1>
<img src="../e-book/media/adminbg.jpg" class="bg-image">
<div class="navbar">
<ul>
<li><a href="front.html">HOME</a></li>
<li><a href="mainpage.php">FEEDBACK</a></li>
<li><a href="logout.php" class="logout-btn">LOGOUT</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>