aboutsummaryrefslogtreecommitdiff
path: root/client/index.html
blob: 1cfcd5d88fbb8578b1aca12540d5c1131463ea8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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>