forked from comcode-org/hackmud_chat_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.19 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
<html>
<head>
<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>