-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
36 lines (31 loc) · 1.31 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title>WebSocket Chat Client</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="xat.js"></script>
<script type="text/javascript" src="list.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body style="text-align:center">
<h1>Welcome to the ChatClient implementing WebSockets</h1>
<p id="benvinguda">Introduce your username:</p>
<p style="display:none;" id="instruccions">Introduce the text you want to send:</p>
<form id="nomUsuari">
<input type="text" id="nomUsuariBox" value="" style="width:200px;">
<input type="submit" id="connect" value="Chat">
</form>
<form id="enviarText">
<input autocomplete="off" style="display:none; width: 200px" type="text" id="txtBox" value="">
<input autocomplete="off" style="display:none;" type="submit" id="enviar" value="Send">
</form>
<br>
<div id="xat" style="display:none"></div>
<div id="llista" style="display:none">
<ul class="list">
<li>Usuaris:</li>
</ul>
</div>
</body>
</html>