-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 991 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Socket.IO chat</title>
<link href="public/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="main">
<div class="main__blackout">
<div class="main__dialog">
<div class="main__nicknameForm">
<input class="main__nicknameInput" placeholder="Enter your nickname">
<button class="main__nicknameButton" type="submit">Confirm</button>
</div>
</div>
</div>
<ul class="main__channels">
<li class="main__li">Global</li>
<li class="main__li">Another One</li>
</ul>
<div class="main__messagesColumn">
<div class="main__messages"></div>
<form action="" class="main__form">
<input class="main__message" autocomplete="off" placeholder="Enter your message"/>
<button class="main__button">Send</button>
</form>
</div>
</div>
<script src="public/bundle.js"></script>
</body>
</html>