diff options
Diffstat (limited to 'mode_select.php')
-rw-r--r-- | mode_select.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/mode_select.php b/mode_select.php new file mode 100644 index 0000000..9ac3224 --- /dev/null +++ b/mode_select.php @@ -0,0 +1,33 @@ +<!-- game.php?roll_num=0&round_num=0 -->
+
+<?php
+ include 'scripts.php';
+?>
+
+<html>
+ <head>
+ <title>Yahtzee</title>
+ <link rel='stylesheet' href='yahtzee.css'/>
+ <style>
+ </style>
+ </head>
+
+ <body>
+ <a href='yahtzee.php'><span class='back'>< Go Back</span></a>
+ <h1>
+ <?=make_head('Pick Your Preferred Rules')?>
+ </h1>
+
+ <a href='game.php?roll_num=0&round_num=0'>
+ <div class='selector readybox' style='background-color:#e2d6b2'>
+ Click Here to Play in Forced Order Mode
+ </div>
+ </a>
+
+ <a href='instructions.php' ><!-- not final href -->
+ <div class='selector helpbox' style='background-color:#e2d6b2'>
+ Click Here to Play in Free Choice Mode
+ </div>
+ </a>
+ </body>
+</html>
\ No newline at end of file |