-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.html
More file actions
120 lines (109 loc) · 3.71 KB
/
application.html
File metadata and controls
120 lines (109 loc) · 3.71 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Applications – PVGCOET Admin Panel</title>
<link rel="stylesheet" href="application.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 Admin Panel</h1>
<p class="subtitle">Admin Panel – Applications</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="application-card">
<h2>Late Return Applications</h2>
<div class="filters">
<input type="text" placeholder="Search student or book...">
<select>
<option value="all">All</option>
<option value="pending">Pending</option>
<option value="approved">Approved</option>
<option value="rejected">Rejected</option>
</select>
</div>
<!-- Applications Table -->
<div class="table-container">
<table>
<thead>
<tr>
<th>Student</th>
<th>Book</th>
<th>Reason</th>
<th>Submitted On</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>S12345 – Rahul Joshi</td>
<td>Signals & Systems</td>
<td>
<select disabled>
<option selected>Exam Pressure</option>
<option>Medical Reason</option>
<option>Personal Emergency</option>
<option>Technical Issue</option>
<option>Travel/Out of Station</option>
<option>Other (custom reason)</option>
</select>
</td>
<td>2025-07-10</td>
<td><span class="status pending">Pending</span></td>
<td>
<button class="approve-btn">Approve</button>
<button class="reject-btn">Reject</button>
</td>
</tr>
<tr>
<td>S12678 – Anjali Kulkarni</td>
<td>Digital Circuits</td>
<td>
<select disabled>
<option selected>Medical Reason</option>
<option>Exam Pressure</option>
<option>Personal Emergency</option>
<option>Technical Issue</option>
<option>Travel/Out of Station</option>
<option>Other (custom reason)</option>
</select>
</td>
<td>2025-07-08</td>
<td><span class="status approved">Approved</span></td>
<td>
<button class="approve-btn" disabled>Approved</button>
<button class="reject-btn" disabled>Reject</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<footer class="footer">
© 2025 PVGCOET Library System. All rights reserved.
</footer>
</body>
</html>