This commit is contained in:
2023-07-17 22:43:55 +02:00
commit 12ea20f270
11 changed files with 2009 additions and 0 deletions

14
templates/index.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Play</title>
<script>
function play() {
fetch("/play/1");
}
</script>
</head>
<body>
<button onclick="play()">Play</button>
</body>
</html>