laas/templates/player.html
2025-02-22 22:37:11 +01:00

18 lines
No EOL
515 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LAAS</title>
<link rel="stylesheet" href="/static/style.css">
<meta name="darkreader-lock">
</head>
<body>
<h1>LAAS</h1>
<p>(Lofi As A Service)</p>
<p>Click the Button below to {% if playing %}Stop {% else %}Start {% endif %} Playback.</p>
<form method="post">
<button>{% if playing %}Stop {% else %}Start {% endif %}</button>
</form>
</body>
</html>