-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (42 loc) · 1.83 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
<!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>
<script defer src="./socket.io/socket.io.js"></script>
<script defer src="./client.js"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="app-container">
<form id="name-container" method="POST" action="" onsubmit="return false">
<input type="text" id="name-input" class="app-input" placeholder="Your name..">
<button type="submit" class="send-button">submit</button>
</form>
<div id="chat-container">
<header><span id="online-span"></span><strong id="username"></strong></header>
<div id="message-container">
</div>
<form id="send-container">
<input type="text" placeholder="Enter message here..." class="app-input" id="message-input">
<button type="submit" class="send-button">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;"
xml:space="preserve">
<g>
<g>
<path d="M507.608,4.395c-4.243-4.244-10.609-5.549-16.177-3.321L9.43,193.872c-5.515,2.206-9.208,7.458-9.42,13.395
c-0.211,5.936,3.101,11.437,8.445,14.029l190.068,92.181l92.182,190.068c2.514,5.184,7.764,8.455,13.493,8.455
c0.178,0,0.357-0.003,0.536-0.01c5.935-0.211,11.189-3.904,13.394-9.419l192.8-481.998
C513.156,15.001,511.851,8.638,507.608,4.395z M52.094,209.118L434.72,56.069L206.691,284.096L52.094,209.118z M302.883,459.907
l-74.979-154.599l228.03-228.027L302.883,459.907z" />
</g>
</g>
</svg>
</button>
</form>
</div>
</div>
</body>
</html>