euchre-live

Euchre web-app for the socially distant family
git clone git://git.alexkarle.com/euchre-live.git
Log | Files | Refs | README | LICENSE

debug.html (1613B) [raw]


      1 <!DOCTYPE html>
      2 <html>
      3   <head>
      4     <meta charset="utf-8">
      5     <title>Euchre Live!!</title>
      6     <link href="suits/H.svg" rel="icon"  type="image/x-icon" />
      7     <link rel="stylesheet" href="debug.css">
      8   </head>
      9 <body>
     10   <div id="content"></div>
     11   <script src="debug.js"></script>
     12  <h1>Euchre</h1>
     13 
     14  <label for="username">Username:</label>
     15  <input type="text" id="username">
     16  <label for="gamename">Game:</label>
     17  <input type="text" id="gamename">
     18  <label for="password">Password:</label>
     19  <input type="text" id="password">
     20  <button onclick="joinGame(0)">Join Game</button>
     21  <button onclick="leaveGame()">Leave Game</button>
     22  <br><br>
     23  <label for="seat_no">Seat:</label>
     24  <input type="number" id="seat_no">
     25  <button onclick="sit()">Sit</button>
     26  <button onclick="stand()">Stand</button>
     27  <br>
     28  <button onclick="start_game()">Start Game</button>
     29  <label for="start_seat">Start Seat:</label>
     30  <input type="number" id="start_seat">
     31  <br>
     32 
     33  <br><br>
     34  <div id="game">Not in a game</div>
     35  <br><br>
     36  <div id="table">No cards on table</div>
     37  <br> <br>
     38  <div id="hand">No cards in hand</div>
     39  <br>
     40  <button onclick="vote(0)">Order</button>
     41  <select id="order_suit">
     42    <option value="H">Hearts</option>
     43    <option value="D">Diamonds</option>
     44    <option value="S">Spades</option>
     45    <option value="C">Clubs</option>
     46  </select>
     47  <button onclick="vote(1)">Loner</button>
     48  <button onclick="pass_kitty()">Pass</button>
     49  <br><br>
     50  <div id="error" style="color:red"> </div>
     51  <br><br>
     52  <label for="chat">Chat:</label>
     53  <input type="text" id="chat">
     54  <button onclick="chat()">Send</button>
     55  <div id="chat_box"></div>
     56 </body>
     57 </html>