-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (46 loc) Β· 1.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat App</title>
<link href="style.css" rel="stylesheet" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.2/socket.io.min.js"
integrity="sha512-Xm9qbB6Pu06k3PUwPj785dyTl6oHxgsv9nHp7ej7nCpAqGZT3OZpsELuCYX05DdonFpTlBpXMOxjavIAIUwr0w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script defer src="app.js"></script>
</head>
<body>
<main>
<form class="form-join">
<input
type="text"
id="name"
maxlength="8"
placeholder="Your name"
size="5"
required
/>
<input
type="text"
id="room"
placeholder="Chat room"
size="5"
required
/>
<button id="join" type="submit">Join</button>
</form>
<ul class="chat-display"></ul>
<p class="user-list"></p>
<p class="room-list"></p>
<p class="activity"></p>
<form class="form-msg">
<input type="text" id="message" placeholder="Your message" required />
<button type="submit">Send</button>
</form>
</main>
</body>
</html>