diff options
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> |
