-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreturn.html
More file actions
59 lines (50 loc) · 1.97 KB
/
Copy pathreturn.html
File metadata and controls
59 lines (50 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Return Book</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">
<div class="form-container">
<h2>Return Book</h2>
<form id="returnBookForm">
<label for="studentId">Student ID:</label>
<input type="text" id="studentId" name="studentId" required>
<label for="studentName">Student Name:</label>
<input type="text" id="studentName" name="studentName" required>
<label for="bookTitle">Book Title:</label>
<input type="text" id="bookTitle" name="bookTitle" required>
<label for="returnDate">Return Date:</label>
<input type="date" id="returnDate" name="returnDate" required>
<button type="submit">Return Book</button>
</form>
</div>
</div>
<script src="return.js">
</script>
</body>
</html>