blob: 7a9e92099d349b6f6d006cc2c89dda27139b03f1 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Interactive BGM</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="screen visible" id="loading-screen">
<p>Loading...</p>
</div>
<div class="screen" id="main-screen">
<h1 id="hostname"></h1>
<h2>Tracks</h2>
<ul id="track-list"></ul>
<h1>General Settings</h1>
<p><label><input id="disable-everywhere" type="checkbox"> Disable everywhere for now?</label></p>
</div>
<div class="screen" id="invalid-host-screen">
<p>Sorry, this page doesn't appear to have a hostname. We can't configure music here.</p>
</div>
<script src="main.js"></script>
</body>
</html>
|