diff options
author | Florrie <towerofnix@gmail.com> | 2019-03-22 21:03:44 -0300 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2019-03-22 21:03:44 -0300 |
commit | 951499dba4ea173ba4c1f08b956e5d558999da45 (patch) | |
tree | 7adae99d03bf9025063637c6fe7f8ea9eb80e759 /extension/popup/index.html | |
parent | 3878c62bb16991ba2dab0bf069b0a67ad53d9106 (diff) |
Popup UI
Diffstat (limited to 'extension/popup/index.html')
-rw-r--r-- | extension/popup/index.html | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/extension/popup/index.html b/extension/popup/index.html index e6cf5e5..9ddbec4 100644 --- a/extension/popup/index.html +++ b/extension/popup/index.html @@ -1 +1,22 @@ -<p>Nice.</p> +<!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> + </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> |