1
0

Initial commit

This commit is contained in:
2024-04-11 08:58:46 +02:00
commit 3b1f094054
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>