-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBooks.html
More file actions
32 lines (29 loc) · 809 Bytes
/
Books.html
File metadata and controls
32 lines (29 loc) · 809 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Library Management</title>
<link rel="stylesheet" type="text/css" href="Books.css">
</head>
<body>
<div id="loading-animation"></div>
<!-- <div id="login-container">
<h2>Login</h2>
<input type="text" id="email" placeholder="Email">
<input type="password" id="password" placeholder="Password">
<button id="login-button">Login</button>
</div> -->
<div id="book-list-container">
<h2>Book List</h2>
<input type="text" id="search-bar" placeholder="Search">
<ul id="book-list"></ul>
<div id="pagination-loader">Loading...</div>
</div>
<div id="cart-container">
<h2>Cart</h2>
<ul id="cart-items"></ul>
<button id="checkout-button">Checkout</button>
</div>
<link rel="stylesheet" href="Books.css">
<script src="Books.js"></script>
</body>
</html>