-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdates.html
More file actions
70 lines (61 loc) · 2.15 KB
/
updates.html
File metadata and controls
70 lines (61 loc) · 2.15 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
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Changes & Updates – PVGCOET Admin Panel</title>
<link rel="stylesheet" href="updates.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 – Changes & Updates</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="content-card">
<h2>Post Library Update / Notice</h2>
<form class="update-form">
<input type="text" placeholder="Title of Update (e.g., New Fine Policy)" required>
<textarea placeholder="Write detailed update, new rule or policy..." rows="6" required></textarea>
<button type="submit"><i class="fas fa-paper-plane"></i> Post Update</button>
</form>
<h2>Recent Updates</h2>
<ul class="updates-list">
<li>
<h4>New Renewal Rules (July 2025)</h4>
<p>Books can only be renewed if returned within 5 days of issue. Multiple renewals disallowed for reserved books.</p>
<span>Posted on: 2025-07-10</span>
</li>
<li>
<h4>Library Closed on 15th August</h4>
<p>Due to Independence Day celebrations, the library will remain closed. Deadlines are extended by 1 day.</p>
<span>Posted on: 2025-07-08</span>
</li>
</ul>
</div>
</main>
<footer class="footer">
© 2025 PVGCOET Library System. All rights reserved.
</footer>
</body>
</html>