-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Client</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.2/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<div id="game" class='box' style='text-align: center'>
<div style="width: 200px;">Name: <input class="input" id="name" type="text"></div>
<div id="messages"></div>
</div>
<hr>
<div id="room-list" class="box" class="messages" style="text-align: center">
Chat
<input id='messageInput' onkeypress="return runSearch(event)" class="input" type="text" placeholder="Text input">
<!-- <input id='messageInput' onkeypress="runSearch()" class="input" type="text" placeholder="Text input"> -->
</div>
<div class='container box' id="menu">
<div id="chat-list"></div>
</div>
</body>
<footer>
<script>if (typeof module === "object") { window.module = module; module = undefined; }</script>
<script src="./index.js"></script>
</footer>
</html>