-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
39 lines (37 loc) · 1.4 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
<html>
<head>
<script>
if(document.location.href.startsWith('https://hackmud.com/chat'))
document.location.href=document.location.href.replace(/^https:\/\/hackmud.com\/chat/,'https://www.hackmud.com/chat');
</script>
<script src="js/lib/jquery-1.12.4.min.js"></script>
<script src="js/chat.js"></script>
<script src="js/init.js"></script>
<script src="js/messages.js"></script>
<script src="js/settings.js"></script>
<script src="js/ui.js"></script>
<link rel="stylesheet" href="css/layout.css"></link>
<link rel="stylesheet" href="css/hackmud.css"></link>
<link rel="stylesheet" href="css/chat_colors.css"></link>
<link rel="stylesheet" href="css/chat_colors_ext.css"></link>
</head>
<body>
<script>
$(document).ready(function() {
settings.ready();
ui_ready();
});
</script>
<div id="chat_pass_login" style="display: none;">
to connect enter your <span class="scr-user">chat_pass</span> from in-game:
<input onchange="login(this.value)">
<div id="chat_login_error"></div>
</div>
<div id="chat_beta_header">
<div class="title">hackmud web chat beta<span id="logout"> — <a href="#" onclick="logout()">logout</a></span></div>
<div class="contribute">contribute: <a href="https://github.com/DrizzlyBear/hackmud_chat_web" target="_blank">https://github.com/DrizzlyBear/hackmud_chat_web</a></div>
</div>
<div id="chat_area">
</div>
</body>
</html>