Files
helloasso/templates/index.html

18 lines
458 B
HTML
Raw Normal View History

2023-09-12 22:52:05 +02:00
<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>