diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-06-14 23:21:04 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-06-14 23:24:30 +0100 |
commit | 71cd5aa94b2706a75f47d5d4c3ab2a5296cc6023 (patch) | |
tree | 224ccc2488326a0e630b066df6d59260919c0d16 /webapp/cao-mobile.html | |
parent | 7af8f5b25f140deff430bf42a6a7950952b26fc1 (diff) |
moved the webapp pages in the webapp/ dir
the procedure to install the webapp is described in the README file.
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'webapp/cao-mobile.html')
-rw-r--r-- | webapp/cao-mobile.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/webapp/cao-mobile.html b/webapp/cao-mobile.html new file mode 100644 index 0000000..a9f8722 --- /dev/null +++ b/webapp/cao-mobile.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" /> + <title>CAO</title> + <link rel="stylesheet" href="cao-common.css"> + <link rel="stylesheet" href="cao-mobile.css"> + <script src="jquery.js"></script> + <script src="cao-common.js"></script> + <script src="cao-mobile.js"></script> + </head> + <body> + <div data-role="page"> + <header hidden> + <span id="leave-room">Leave this room</span> + <span id="score">Your score is <span id="score-value">0</span></span> + </header> + <div id="home" class="page current"> + <h1>Cards Against Humanity</h1> + <h2>A party game for horrible people.</h2> + <button id="join-btn" class="bottom" hidden>Join game!</button> + </div> + <div id="game" class="page"> + <div data-state="judge-collect"> + <div class="card-list read-only"> + <button id="black-card" class="card black"></button> + </div> + <div class="message">You have <span id="played-card-number">0</span> cards!</div> + </div> + <div id="white-cards" class="card-list read-only" disabled='disabled'></div> + <div id="played-cards" class="card-list read-only"></div> + <button id="become-judge-btn" class="bottom" data-state="become-judge">Become judge!</button> + <div class="bottom" data-state="judge-choose">Pick the best card...</div> + <div class="bottom" data-state="player-choose">Choose a card...</div> + <div class="bottom" data-state="player-wait">Waiting for judge...</div> + <button id="judge-collect-btn" class="bottom" data-state="judge-collect">Collect!</button> + </div> + </body> +</html> |