-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics.html
More file actions
63 lines (55 loc) · 1.66 KB
/
analytics.html
File metadata and controls
63 lines (55 loc) · 1.66 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
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title> Analytics</title>
<link rel="stylesheet" href="analytics.css" />
</head>
<body>
<header class="header">
<div class="logo">
<img src="images/logo.jpg" alt="Logo" />
<div class="logo-text">
<h1>PVGCOET </h1>
<p class="subtitle">Admin Panel – Analytics</p>
</div>
</div>
<div class="header-right">
<div class="dark-toggle">
<input type="checkbox" id="themeToggle" />
<span>🌙</span>
</div>
<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-content">
<div class="analytics-card">
<h2>Library Analytics Dashboard</h2>
<p class="description"> Insights: patterns and department-wise trends.</p>
<div class="analytics-section">
<h3>📚 Most Issued Books</h3>
<div class="graph-box">[Graph will appear here]</div>
</div>
<div class="analytics-section">
<h3>🎓 Top Readers</h3>
<div class="graph-box">[Graph will appear here]</div>
</div>
<div class="analytics-section">
<h3>📈 Department-wise Book Circulation</h3>
<div class="graph-box">[Graph will appear here]</div>
</div>
</div>
</main>
<footer class="footer">
© 2025 PVGCOET Library System.
</footer>
</body>
</html>