summaryrefslogtreecommitdiffstats
path: root/pages
diff options
context:
space:
mode:
Diffstat (limited to 'pages')
-rw-r--r--pages/gamecreate.php37
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