-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (50 loc) · 1.63 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
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<meta charset="utf-8">
<title>hack.chat</title>
<link rel="stylesheet" href="style.css">
<link id="scheme-link" rel="stylesheet" href="schemes/atelier-dune.css">
<link rel="stylesheet" href="hybrid.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
</head>
<body>
<article class="container">
<div id="messages" class="messages"></div>
</article>
<footer id="footer">
<div class="container">
<form id="chatform" class="message">
<textarea id="chatinput" type="text" autocomplete="off" autofocus></textarea>
</form>
</div>
</footer>
<nav id="sidebar">
<div id="sidebar-content" class="hidden">
<div style="display: flex; justify-content: space-between;">
<div>
<h4 tr>Settings</h4>
</div>
<a id="sidebar-close">x</a>
</div>
<hr>
<div id="users-div">
<h4>Users online</h4>
<p>(Click user to invite; right click to ignore.)</p>
<ul id="users"></ul>
</div>
</div>
</nav>
<audio class="hidden" id="notify-sound" preload="auto" src="audio/notify.mp3">
<source src="audio/notify.mp3" type="audio/ogg">
</audio>
<script src="global.js"></script>
<script type="module" src="client.js"></script>
<script type="module" src="sidebar.js"></script>
<script type="module" src="user-list.js"></script>
<script type="module" src="window.js"></script>
<script type="module" src="index.js"></script>
</body>
</html>