]> git.cworth.org Git - lmno.games/blobdiff - index.html
Remove percentage units from grid column sizing
[lmno.games] / index.html
index 4160a893664666e1c4cefb14685a18f2d22536e3..0546dd703bd9636568176118c84d330bac2fed6b 100644 (file)
@@ -1,8 +1,36 @@
+<!DOCTYPE html>
 <html>
   <head>
+    <meta charset="utf-8"/>
+
     <title>LMNO Games</title>
+
+    <link rel="stylesheet" href="/reset.css" type="text/css" />
+    <link rel="stylesheet" href="/style.css" type="text/css" />
   </head>
   <body>
-    <h1>LMNO Games</h1>
+
+    <div id="page">
+
+      <form onsubmit="join_game(this)">
+
+        <div class="form-field large">
+          <label for="id">Game ID</label>
+          <input type="text" id="id" maxlength="4"
+                 placeholder="Enter a 4-letter Game Code"
+                 oninput="this.value = this.value.toUpperCase()"
+                 autocomplete="off"
+                 required>
+        </div>
+
+        <div class="form-field large">
+          <button type="submit">
+            Join Game
+          </button>
+        </div>
+
+      </form>
+
+    </div>
   </body>
 </html>