forked from dreamland-mud/mudjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="Description" CONTENT="DreamLand MUD (Мир Грез, Мир Снов, Dream Land, МУД, МАД) текстовая многопользовательская ролевая онлайн игра на тематику фентези">
<title>DreamLand MUD - Мир Грёз, текстовая онлайн рпг на фентезийную тематику</title>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.3.3/ace.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&subset=cyrillic" rel="stylesheet"></link>
<link rel="stylesheet" type="text/css" href="main.css"></link>
<script>
var wsUrl = "wss://dreamland.rocks/dreamland";
</script>
</head>
<body>
<div id="page">
<div id="terminal-wrap">
<div id="terminal"></div>
</div>
<button id="reconnect">Reconnect</button>
<form id="input">
<input type="text"></input>
</form>
</div>
<button id="settings-button">Settings</button>
<div id="settings-panel">
<div id="editor"></div>
<button id="settings-hide-button">Save</button>
</div>
<div id="triggers">
<div class="trigger"></div>
</div>
<script src="terminal.js"></script>
<script src="input.js"></script>
<script src="main.js"></script>
<script src="settings.js"></script>
</body>
</html>