-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat-window.html
30 lines (27 loc) · 1.02 KB
/
chat-window.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>IM client</title>
<link rel="stylesheet" href="bower_components/normalize-css/normalize.css">
<link rel="stylesheet" href="assets/dist/css/chat-window.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="chat_get-username">
<input class="chat_username-input" type="text" placeholder="Enter your username">
</div>
<div class="chat_messages">
<div class="chat_wrapper">
</div>
<div class="bugfix_input-padding"> </div>
<textarea class="chat_input" name="message_input" id="messageInput" placeholder="Type your message here"></textarea>
</div>
<div class="chat_clients">
<ul class="list-style-type_none">
</ul>
<button class="button chat_button_change-username">Change Username</button>
</div>
</body>
<script data-main="assets/js/client/requireConfig.js" src="bower_components/requirejs/require.js"></script>
</html>