-
Notifications
You must be signed in to change notification settings - Fork 0
/
books.html
53 lines (50 loc) · 2.08 KB
/
books.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book List</title>
<link rel="stylesheet" href="./css/bootstrap.css">
<script defer src="./js/library.js"></script>
<script defer src="./js/addBook.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark"style="background-color: #00b8ea;">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">The CityLibrary® :::a CS418 WebApp project</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="./about.html">| About Us |</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./virtualtour.html">| Virtual Tour |</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./books.html">| Books |</a>
</li>
</ul>
<span class="navbar-text">
Welcome, Guest
</span>
</div>
</div>
</nav>
<div class="marginCenter">
<h3 style="color: #39b4da">Books in our Collection <a class="btn btn-outline-success float-end" href="./addnewbook.html">Add New Book</a></h3>
<hr>
<table class="table table-striped">
<thead><tr><th>#</th><th>ISBN</th><th>Book Title</th><th>Overdue Fee</th><th>Publisher</th><th>Date Published</th><th></th><th></th></tr></thead>
<tbody id = "books"></tbody>
</table>
</div>
<footer class="footer">
<div class="container">
<span class="text-muted float-end">Hung Le - CS418 - 2021</span>
</div>
</footer>
</body>
</html>