GoTomato/index.html

28 lines
554 B
HTML
Raw Normal View History

2024-10-18 22:39:29 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pomodoro Timer</title>
</head>
<body>
<h1>Pomodoro Timer</h1>
<div id="timer">Connecting to server...</div>
<script>
var ws = new WebSocket("ws://localhost:8080/ws");
ws.onmessage = function (event) {
document.getElementById("timer").innerText = event.data;
};
ws.onclose = function () {
document.getElementById("timer").innerText = "Connection closed.";
};
</script>
</body>
</html>