-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
40 lines (30 loc) · 1009 Bytes
/
chat.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
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Room</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<button id="leave-chat">Leave</button>
<div class="sidebar">
<h3>Active Users</h3>
<ul id="user-list"></ul>
</div>
<div class="chat-container">
<div class="chat-header">
<span id="chat-room-title"></span>
</div>
<div class="messages" id="messages"></div>
<div class="typing-indicator" id="typing-indicator"></div>
<div class="chat-input">
<input type="text" id="message" placeholder="Type a message..." />
<input type="file" id="file-input" style="display: none;">
<button id="file-upload-btn">📁</button>
<button id="send">Send</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>