]> git.cworth.org Git - lmno.games/blob - tictactoe/index.html
Add a ready bit to client state, and render nothing before ready
[lmno.games] / tictactoe / index.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <meta charset="utf-8"/>
5     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
7     <title>Tic Tac Toe</title>
8
9     <link rel="stylesheet" href="/reset.css" type="text/css" />
10     <link rel="stylesheet" href="/style.css" type="text/css" />
11
12     <script src="/lmno.js"></script>
13   </head>
14   <body>
15
16     <div id="page">
17
18       <h1>Tic Tac Toe</h1>
19
20       <p>
21         Just the classic game.
22       </p>
23
24       <div id="message-area">
25       </div>
26
27       <form onsubmit="lmno_new('tictactoe'); return false;">
28         <button type="submit">
29           Host a new game
30         </button>
31       </form>
32
33     </div>
34
35   </body>
36 </html>