-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 1.93 KB
/
index.html
File metadata and controls
56 lines (49 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library Management System</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
</head>
<body>
<header>
<h1>Library Management System</h1>
</header>
<main>
<!-- Search Section -->
<section id="searchSection">
<h2>Search Books</h2>
<input type="text" id="searchInput" placeholder="Search by title, author, or user">
<button onclick="searchBooks()">Search</button>
</section>
<!-- Check Out Section -->
<section id="checkoutSection">
<h2>Check Out a Book</h2>
<label for="checkoutBarcode">Barcode:</label>
<input type="text" id="checkoutBarcode" placeholder="Enter book barcode">
<label for="checkoutUser">User Name:</label>
<input type="text" id="checkoutUser" placeholder="Enter your name">
<button onclick="checkoutBook()">Check Out</button>
</section>
<!-- Check In Section -->
<section id="checkinSection">
<h2>Check In a Book</h2>
<label for="checkinBarcode">Barcode:</label>
<input type="text" id="checkinBarcode" placeholder="Enter book barcode">
<button onclick="checkinBook()">Check In</button>
</section>
<!-- Books Display Section -->
<section id="booksDisplay">
<h2>Library Books</h2>
<div id="booksContainer"></div>
<div id="pagination">
<button onclick="changePage(-1)">Previous</button>
<span id="currentPage">Page 1</span>
<button onclick="changePage(1)">Next</button>
</div>
</section>
</main>
<script src="script.js"></script> <!-- Link to your JavaScript file -->
</body>
</html>