soundboard/templates/index.html
2023-07-17 22:43:55 +02:00

15 lines
235 B
HTML

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