-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfine.html
More file actions
58 lines (50 loc) · 1.66 KB
/
Copy pathfine.html
File metadata and controls
58 lines (50 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Penalty Details</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> Fine Details</h2>
<table>
<thead>
<tr>
<th>Student ID</th>
<th>Student Name</th>
<th>Book Title</th>
<th>Issue Date</th>
<th>Due Date</th>
<th>Fine</th>
</tr>
</thead>
<tbody id="penaltyTable">
</tbody>
</table>
</div>
<script src="fine.js"></script>
</body>
</html>