-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
56 lines (48 loc) · 1.84 KB
/
admin.html
File metadata and controls
56 lines (48 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>PVGCOET Admin Panel</title>
<link rel="stylesheet" href="admin.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header class="header">
<div class="logo">
<img src="images/logo.jpg" alt="SmartLib Logo">
<div class="logo-text">
<h1>PVGCOET</h1>
<p class="subtitle">Admin Panel – Library System</p>
</div>
</div>
<div class="header-right">
<div class="admin-status">
<i class="fas fa-user-shield"></i> Logged in as <strong>Admin</strong>
</div>
<div class="language-dropdown">
<select>
<option value="en">English</option>
<option value="hi">हिंदी</option>
</select>
</div>
</div>
</header>
<main class="main-panel">
<div class="admin-card">
<h1 class="title">Admin Panel</h1>
<nav class="nav-buttons">
<a href="add_del.html" class="panel-link"><i class="fas fa-book-medical"></i>Add/Delete Book</a>
<a href="assign_return.html" class="panel-link"><i class="fas fa-arrow-right-arrow-left"></i>Assign/Return</a>
<a href="updates.html" class="panel-link"><i class="fas fa-pen-to-square"></i>Changes/Updates</a>
<a href="analytics.html" class="panel-link"><i class="fas fa-chart-bar"></i>Analytics Dashboard</a>
<a href="application.html" class="panel-link"><i class="fas fa-envelope-open-text"></i>Applications</a>
</nav>
</div>
<div class="right-panel"></div>
</main>
<footer class="footer">
© 2025 PVGCOET Library System. All rights reserved.
</footer>
</body>
</html>