-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
30 lines (27 loc) · 1.15 KB
/
Copy pathadmin.html
File metadata and controls
30 lines (27 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Admin Page</title>
</head>
<body>
<div class="top_nav_admin">
<a href="admin.html" class="left logo"><div><img src="img/logo_nobg.png" height="60px"></div></a>
<a href="admin.html" class="left active"><div>Available Books</div></a>
<a href="add_book.html" class="left"><div>Add a Book</div></a>
<a href="#name" class="right name">N</a>
<a href="main.html" class="right signout">Sign Out</a>
</div>
<!-- <button id="updateAvailableBooks">Update Available Books Page</button> -->
<div class="book-flex" id="admin_available">
</div>
<script type="module" src="js/localStorage.js"></script>
<script type="module" src="js/addBook.js"></script>
<script type="module" src="js/displayBook.js"></script>
<script type="module" src="js/addBook.js"></script>
<script type="module" src="js/adminAvailable.js"></script>
<script src="js/deleteBook.js"></script>
</body>
</html>