-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.28 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.28 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
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/site.css">
<link rel="stylesheet" href="/static/layout.css">
<link rel="stylesheet" href="/static/modal.css">
<title>Team Manager</title>
<script src="/src/app.js" type="module"></script>
</head>
<body>
<div id="content">
<header id="titlebar" class="layout">
<a href="/" class="site-logo">Team Manager</a>
<nav>
<a href="/browse" class="action">Browse Teams</a>
<a href="/login" class="action guest">Login</a>
<a href="/register" class="action guest">Register</a>
<a href="/my-teams" class="action user">My Teams</a>
<a id="logoutBtn" href="javascript:void(0)" class="action user">Logout</a>
</nav>
</header>
<main>
</main>
<footer id="footer">
SoftUni © 2014-2021
</footer>
</div>
<div class="overlay">
<div class="modal">
<p>Overlay message</p>
<a href="#" class="action">Action</a>
</div>
</div>
</body>
</html>