diff options
author | arun <arun@nubati.net> | 2006-12-12 11:55:39 +0000 |
---|---|---|
committer | arun <arun> | 2006-12-12 11:55:39 +0000 |
commit | be3e7ed509f7fd3f2009b1ad06554a0c07e1a781 (patch) | |
tree | 9cac8e9e038df7387ed0eabb157536e5ae5464bf /functions.php | |
parent | 320ebe96e21e08d5fad1a4ccbef241d5defd92bc (diff) | |
download | e-DoKo-be3e7ed509f7fd3f2009b1ad06554a0c07e1a781.tar.gz e-DoKo-be3e7ed509f7fd3f2009b1ad06554a0c07e1a781.tar.bz2 e-DoKo-be3e7ed509f7fd3f2009b1ad06554a0c07e1a781.zip |
players should get emails again, if it is there turn
Diffstat (limited to 'functions.php')
-rw-r--r-- | functions.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/functions.php b/functions.php index abf2b82..390f6c9 100644 --- a/functions.php +++ b/functions.php @@ -435,4 +435,19 @@ function return_timezone($offset) return $zone; } +function output_form_for_new_game() +{ +?> + <p>Please add 4 names, please make sure that the names are correct! </p> + <form action="index.php" method="post"> + Name: <input name="PlayerA" type="text" size="10" maxlength="20" /> + Name: <input name="PlayerB" type="text" size="10" maxlength="20" /> + Name: <input name="PlayerC" type="text" size="10" maxlength="20" /> + Name: <input name="PlayerD" type="text" size="10" maxlength="20" /> + + <input type="submit" value="start game" /> + </form> +<?php +} + ?>
\ No newline at end of file |