-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin-dashboard.html
156 lines (139 loc) · 3.84 KB
/
admin-dashboard.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Dashboard</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: #5191fd;
color: white;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: 700;
margin-right: 20px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav ul li a:hover {
color: #ffeb3b;
}
.dashboard {
padding: 40px 20px;
background: linear-gradient(135deg, #50caa3, #1d664f);
color: white;
flex: 1;
}
.dashboard h2 {
font-size: 36px;
text-align: center;
margin-bottom: 40px;
}
.dashboard-content {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
margin: 0 auto;
max-width: 1200px;
}
.card {
background: white;
color: #333;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 100%;
max-width: 300px;
text-align: center;
}
.card h3 {
font-size: 24px;
margin-bottom: 15px;
}
.card p {
font-size: 16px;
margin-bottom: 20px;
}
.btn {
background-color: #ffeb3b;
color: #333;
padding: 12px 25px;
text-decoration: none;
border-radius: 5px;
font-weight: 700;
transition: background-color 0.3s;
border: none;
cursor: pointer;
}
.btn:hover {
background-color: #ffc107;
}
footer {
text-align: center;
padding: 4px;
background-color: #333;
color: white;
width: 100%;
margin-top: auto;
}
</style>
</head>
<body>
<header>
<div class="logo">RecruitPro - Admin</div>
<nav>
<ul>
<li><a href="index.html">Logout</a></li>
</ul>
</nav>
</header>
<section class="dashboard">
<h2>Admin Dashboard</h2>
<div class="dashboard-content">
<div class="card">
<h3>Approve Recruiters</h3>
<p>Review and approve new recruiter accounts.</p>
<button class="btn" onclick="window.location.href='approve-recruiters.html'">Approve Accounts</button>
</div>
<div class="card">
<h3>Manage Job Posts</h3>
<p>Approve, Edit, or Delete Job Posts.</p>
<button class="btn" onclick="window.location.href='manage-jobs.html'">Manage Jobs</button>
</div>
</div>
</section>
<footer>
<p>© 2024 RecruitPro. All rights reserved.</p>
</footer>
</body>
</html>