-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 936 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Q-Board v0.3.0</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="qboard.png">
</head>
<body>
<header>
<h1><img width=75px height=75px style="vertical-align: middle;" src="qboard.png">
Q-Board v0.3.0</h1>
<div id="header-controls">
<span id="username-display"></span>
<button id="login-btn">Login</button>
<button id="new-thread-header-btn" style="display: none;">New Thread</button>
<button id="reload-btn">Reload</button>
</div>
</header>
<main>
<div id="loading-threads"></div>
<div id="loading-replies"></div>
<div id="categories-container">
<!-- Categories will be dynamically loaded here -->
</div>
</main>
<script src="script.js"></script>
</body>
</html>