diff options
author | Snap <snapwilliam@gmail.com> | 2015-04-28 15:53:58 -0700 |
---|---|---|
committer | Snap <snapwilliam@gmail.com> | 2015-04-28 15:53:58 -0700 |
commit | 6001d7ef9b8b26fe388ea5965139d84bdd63ca22 (patch) | |
tree | a8521c254eb00f4d616ed92ea3fe2eab6d857709 /pages | |
parent | e90a8d192446fce277dc3efe4f2913d5fecca0dc (diff) | |
download | pathery-6001d7ef9b8b26fe388ea5965139d84bdd63ca22.tar.xz |
Just starting the quick-game stuff.
Diffstat (limited to 'pages')
-rw-r--r-- | pages/gamecreate.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/pages/gamecreate.php b/pages/gamecreate.php new file mode 100644 index 0000000..44fe2d1 --- /dev/null +++ b/pages/gamecreate.php @@ -0,0 +1,37 @@ +<?php
+topbar($headerLinks);
+
+?>
+
+
+<div class="wrapper" style="width:600px;">
+<h2>Create Game</h2>
+<h3>Send us a line!</h3>
+
+<p>
+</p>
+
+<form action="createGame" method="post" name="gameOptions">
+
+<select id='playerCount' name='playerCount'>
+ <option value='2' selected='selected'>2</option>
+ <option value='3'>3</option>
+ <option value='4'>4</option>
+ <option value='5'>5</option>
+ <option value='6'>6</option>
+</select>
+<br /><br />
+
+<textarea name='body' rows="10" cols="30"></textarea><br />
+<input type="checkbox" name="smartTime" value="yes" /> Use Smart-Time? *
+<br /><br />
+<input type="submit" value="Create Game" />
+
+</form>
+
+</div>
+
+
+<?php
+htmlFooter();
+?>
\ No newline at end of file |