-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassign_return.html
More file actions
75 lines (68 loc) · 1.96 KB
/
assign_return.html
File metadata and controls
75 lines (68 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Assign & Return Books – PVGCOET Admin Panel</title>
<link rel="stylesheet" href="assign_return.css" />
</head>
<body>
<header class="header">
<div class="logo">
<img src="images/logo.jpg" alt="Logo" />
<div class="logo-text">
<h1>PVGCOET Admin Panel</h1>
<p class="subtitle">Library System – Assign & Return</p>
</div>
</div>
<div class="header-right">
<div class="dark-toggle">
<input type="checkbox" id="themeToggle" />
<span>🌙</span>
</div>
<div class="language-dropdown">
<select>
<option>English</option>
<option>हिंदी</option>
</select>
</div>
</div>
</header>
<main class="main-content">
<div class="content-card">
<h2>Manage Book Assign & Returns</h2>
<form class="assign-form">
<input type="text" placeholder="Student ID" />
<input type="text" placeholder="Book ID / Title" />
<input type="date" placeholder="Assign Date" />
<input type="date" placeholder="Return Date" />
<button type="submit">Assign Book</button>
</form>
<div class="table-container">
<table>
<thead>
<tr>
<th>Student</th>
<th>Book</th>
<th>Issued</th>
<th>Due</th>
<th>Return</th>
</tr>
</thead>
<tbody>
<tr>
<td>S123 – Ananya P.</td>
<td>AI For Beginners</td>
<td>01 July</td>
<td>15 July</td>
<td><button class="return-btn">Return</button></td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<footer class="footer">
© 2025 PVGCOET Library System.
</footer>
</body>
</html>