diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-10-10 07:42:13 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-10-10 07:42:13 +0300 |
commit | 8281be7ba874e116ccc43e41d1275c1d531c54dc (patch) | |
tree | 9f2495682205807db74842674b4bedfbc27b0daf /client/index.html | |
parent | 3c508f9bf96bc425eb183f676214ed9b9d14b84e (diff) | |
download | arching-kaos-radio-8281be7ba874e116ccc43e41d1275c1d531c54dc.tar.gz arching-kaos-radio-8281be7ba874e116ccc43e41d1275c1d531c54dc.tar.bz2 arching-kaos-radio-8281be7ba874e116ccc43e41d1275c1d531c54dc.zip |
Implementation
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/client/index.html b/client/index.html new file mode 100644 index 0000000..1cfcd5d --- /dev/null +++ b/client/index.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html> + <head> + </head> + <body> + <h1>Radio station example</h1> + <div> + <p>Hit play!</p> + <button onclick="sync_radio()">Sync!</button> + <div class="radio-player"> + <audio preload="auto" controls style="width: 100%;"> + <source src=""/> + </audio> + </div> + </div> + <div> + <h2>Artist</h2> + <p class="artist"></p> + <h2>Title</h2> + <p class="title"></p> + <h2>You are here for (seconds)</h2> + <p class="you-are-here"></p> + <h2>Started on</h2> + <p class="started-on"></p> + <h2>Current time</h2> + <p class="current-time"></p> + <h2>Hash of current show</h2> + <p class="current-show-hash"></p> + <h2>Hash of list</h2> + <p class="list-hash"></p> + </div> + <div> + <a href="./data.html" target="_blank">Data</a> + </div> + <script src="./js/radio_emulator.js"></script> + </body> +</html> |