-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (40 loc) · 1.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="/styles/styles.css">
<title>Online Books Library</title>
<script src="/src/app.js" type="module"></script>
</head>
<body>
<div id="container">
<header id="site-header">
<!-- Navigation -->
<nav class="navbar">
<section class="navbar-dashboard">
<a href="/catalog">All Books</a>
<!-- Guest users -->
<div id="guest">
<a class="button" href="/login">Login</a>
<a class="button" href="/register">Register</a>
</div>
<!-- Logged-in users -->
<div id="user">
<span>Welcome, {email}</span>
<a class="button" href="/profile">My Books</a>
<a class="button" href="/create">Add Book</a>
<a class="button" href="javascript:void(0)" id="logoutBtn">Logout</a>
</div>
</section>
</nav>
</header>
<!-- Main Content -->
<main id="site-content"></main>
<!-- Dashboard Page ( for Guests and Users ) -->
<footer id="site-footer">
<p>@Library Catalog</p>
</footer>
</div>
</body>
</html>