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