]> git.cworth.org Git - lmno.games/blob - index.html
Remove percentage units from grid column sizing
[lmno.games] / index.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <meta charset="utf-8"/>
5
6     <title>LMNO Games</title>
7
8     <link rel="stylesheet" href="/reset.css" type="text/css" />
9     <link rel="stylesheet" href="/style.css" type="text/css" />
10   </head>
11   <body>
12
13     <div id="page">
14
15       <form onsubmit="join_game(this)">
16
17         <div class="form-field large">
18           <label for="id">Game ID</label>
19           <input type="text" id="id" maxlength="4"
20                  placeholder="Enter a 4-letter Game Code"
21                  oninput="this.value = this.value.toUpperCase()"
22                  autocomplete="off"
23                  required>
24         </div>
25
26         <div class="form-field large">
27           <button type="submit">
28             Join Game
29           </button>
30         </div>
31
32       </form>
33
34     </div>
35   </body>
36 </html>