Minor Edit and clear one file

This commit is contained in:
Xamora
2023-11-27 15:47:00 +01:00
parent c16d281892
commit 7b6a8ba57b
3 changed files with 4 additions and 25 deletions

View File

@ -1,24 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Chat</title>
</head>
<body>
<h1>Chat</h1>
<form id="form">
<input type="text" name="message" />
</form>
<script type="text/javascript">
let url = `ws://${window.location.host}/ws/socket-server/`
const chatSocket = new WebSocket(url)
chatSocket.onmessage = function(e){
let data = JSON.parse(e.data)
console.log('Data:', data)
}
</script>
</b