1
0

Initial commit

This commit is contained in:
Rémi Heredero 2024-04-11 08:58:46 +02:00
commit 3b1f094054
Signed by: Klagarge
GPG Key ID: 3CBAC2C6CD1E8807
3 changed files with 10406 additions and 0 deletions

16
chat.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebSocket Chat exercise</title>
<script>
</script>
</head>
<body>
<textarea id="chatlog" readonly></textarea><br/>
<input id="msg" type="text" />
<button type="submit" id="sendButton">Send!</button>
<button type="submit" id="closeButton">End</button>
</body>
</html>

10364
jquery-3.3.1.js vendored Normal file

File diff suppressed because it is too large Load Diff

26
tempbat.html Normal file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Websocket Server EX</title>
<script src="jquery-3.3.1.js"></script>
<script>
</script>
<style>
#log
{
width: 200px;
height: 500px;
font: courier;
font-size: 8;
background:lightblue;
}
</style>
</head>
<body>
<textarea id="log" readonly></textarea><br/>
<button id="temp">Temp</button>
<button id="bat">Bat</button>
<button id="discon">Disconnect</button>
</body>
</html>