Files
helloasso/templates/index.html
2023-09-12 22:52:05 +02:00

18 lines
458 B
HTML

<html>
<head>
<title>Hello Asso</title>
</head>
<body>
<div id="p">TEST</div>
<script>
const websocket = new WebSocket('ws://'+ location.host + '/notify');
websocket.addEventListener('message', ev => {
console.log(ev.data);
let div = document.createTextNode(ev.data);
document.body.append(div);
});
</script>
</body>
</html>