diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-10-23 00:20:35 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-10-23 00:20:35 +0200 |
| commit | bb8ef2203469e949700499499e101354dfb1fe1f (patch) | |
| tree | a9f68f89fd84a6ce6a5c04e558cc962d520604b6 /client/index.html | |
| parent | 2d7b7c84cd843b75ca7131549f99d0671dfe3268 (diff) | |
client: Add very basic client
Diffstat (limited to 'client/index.html')
| -rw-r--r-- | client/index.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/client/index.html b/client/index.html new file mode 100644 index 0000000..f0487eb --- /dev/null +++ b/client/index.html @@ -0,0 +1,28 @@ +<html> + <head> + <title>Bluetooth Jukebox</title> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link href="style.css" rel="stylesheet" /> + <link href="favicon.ico" rel="icon" sizes="16x16" /> + <link href="favicon.png" rel="icon" sizes="512x512" /> + <link href="favicon.svg" rel="icon" sizes="any" /> + <script type="module" src="api.js"></script> + <script type="module" src="main.js"></script> + </head> + <body> + <h1>Bluetooth Jukebox</h1> + <p id="error" class="invisible"></p> + <h2>Playing</h2> + <ol id="playing"> + </ol> + <h2>Connected</h2> + <ol id="connected"> + </ol> + <h2>Paired</h2> + <ol id="paired"> + </ol> + <button id="enable_pairing" disabled>Enable pairing</button> + <button id="disable_pairing" disabled>Disable pairing</button> + <p id="pairing_status" class="invisible">Pair with ...</p> + </body> +</html> |
