-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="style.css">
<title>socket.io chat</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<script src="/socket.io/socket.io.js"></script>
<script src="http://code.jquery.com/jquery-3.4.1.min.js"></script>
</head>
<body>
<div class="header">
<h1>Node.JS+Socket.IO WebChat Service</h1>
</div>
<div class="bg"></div>
<h2>Enter your name and let's get started!</h2>
<div id="svr-messages"></div>
<div id="userlist"></div>
<form id="form" action="#">
<input id="username" autocomplete="on" placeholder="Your name!" />
<button id="regsubmit">Regist!</button>
</form>
<form id="message_form" action="##">
<input id="input" autocomplete="off" placeholder="Message!">
<button>Send!</button>
</form>
<ul id="messages"></ul>
<!img src="https://pbs.twimg.com/media/EJRHf11U8AEwa01?format=jpg&name=orig" alt="picture">
<!img src="./test.jpg" alt="picture2">
</body>
<script src="/Client.js"></script>
</html>