-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.41 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Meme Lounge</title>
<link rel="stylesheet" href="/style/styles.css">
<script src='/src/app.js' type='module'></script>
</head>
<body>
<div id="container">
<!-- Notifications -->
<section id="notifications">
<div id="errorBox" class="notification">
<span>MESSAGE</span>
</div>
</section>
<!-- Navigation -->
<nav>
<a href="/memes">All Memes</a>
<!-- Logged users -->
<div class="user">
<a href="/create">Create Meme</a>
<div class="profile">
<span>Welcome, {email}</span>
<a href="/profile">My Profile</a>
<a id="logoutBtn" href="javascript:void(0)">Logout</a>
</div>
</div>
<!-- Guest users -->
<div class="guest">
<div class="profile">
<a href="/login">Login</a>
<a href="/register">Register</a>
</div>
<a class="active" href="/">Home Page</a>
</div>
</nav>
<!-- Main Content -->
<main>
</main>
<!-- Footer -->
<footer class="footer">
<p>Created by SoftUni Delivery Team</p>
</footer>
</div>
</body>
</html>