-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathissue1.html
More file actions
75 lines (66 loc) · 2.01 KB
/
Copy pathissue1.html
File metadata and controls
75 lines (66 loc) · 2.01 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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Issued Books</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="sidebar">
<h2 id="e">Admin</h2>
<a href="home.html"><button><i class="fas fa-home"></i> Home</button></a>
<br>
<a href="dashboard.html"><button><i class="fas fa-dashboard"></i> Dashboard</button></a>
<br>
<a href="addbook.html"><button><i class="fas fa-book"></i> Add Book</button></a>
<br>
<a href="issuebook.html"><button><i class="fas fa-book-open"></i> Issue Book</button></a>
<br>
<a href="searchbook.html"><button><i class="fas fa-search"></i> Search Book</button></a>
<br>
<a href="issue1.html"><button><i class="fas fa-list"></i> Issued Books</button></a>
<br>
<a href="return.html"><button><i class="fas fa-undo"></i> Return Book</button></a>
<br>
<a href="fine.html"><button><i class="fas fa-exclamation-triangle"></i> Penalty</button></a>
<br>
<button class="logout-btn" onclick="logout()"><i class="fas fa-sign-out-alt"></i> Logout</button>
</div>
<div class="main-content">
<h2>Issued Books List</h2>
<table>
<thead>
<tr>
<th>Student Name</th>
<th>Book Title</th>
<th>Issue Date</th>
</tr>
</thead>
<tbody id="issuedBooksTable">
<tr>
<td>Ali Khan</td>
<td>Data Structures</td>
<td>2025-05-01</td>
</tr>
<tr>
<td>Sara Ahmed</td>
<td>Java Basics</td>
<td>2025-05-02</td>
</tr>
<tr>
<td>Usman Tariq</td>
<td>HTML & CSS</td>
<td>2025-05-03</td>
</tr>
</tbody>
</table>
<div class="total-issued">
Total Books Issued: <span id="totalIssued">3</span>
</div>
</div>
<script src="issue1.js">
</script>
</body>
</html>