summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--css/standard.css4
-rw-r--r--functions.php2
-rw-r--r--index.php11
-rw-r--r--output.php11
4 files changed, 22 insertions, 6 deletions
diff --git a/css/standard.css b/css/standard.css
index 9eb54e7..5bca2ae 100644
--- a/css/standard.css
+++ b/css/standard.css
@@ -37,7 +37,9 @@
text-align: center;
}
-
+.rules {
+margin-top:20em;
+}
.card {
diff --git a/functions.php b/functions.php
index d738b00..57945ef 100644
--- a/functions.php
+++ b/functions.php
@@ -818,7 +818,7 @@ function display_user_menu()
while( $r = mysql_fetch_array($result,MYSQL_NUM))
{
- echo "<a href=\"".$host."?me=".$r[0]."\">game #".$r[1]." </a><br />\n";
+ echo "<a href=\"".$host."?me=".$r[0]."\">game ".DB_format_gameid($r[1])." </a><br />\n";
}
echo
diff --git a/index.php b/index.php
index 71d4050..57145c6 100644
--- a/index.php
+++ b/index.php
@@ -33,8 +33,15 @@ if(myisset("logout"))
}
else if(myisset("new"))
{
- $names = DB_get_all_names();
- output_form_for_new_game($names);
+ if( isset($_SESSION["name"]) )
+ {
+ $names = DB_get_all_names();
+ output_form_for_new_game($names);
+ }
+ else
+ {
+ echo "Please log in.";
+ }
}
/*check if everything is ready to set up a new game */
else if( myisset("PlayerA", "PlayerB","PlayerC","PlayerD","dullen","schweinchen","call" ))
diff --git a/output.php b/output.php
index ddea3b8..4485db4 100644
--- a/output.php
+++ b/output.php
@@ -44,13 +44,19 @@ function output_form_for_new_game($names)
<h2> Players </h2>
<p>Please select four players (or use the randomly pre-selected names)</p>
<form action="index.php" method="post">
+
+ <div class="table">
+ <img src="pics/table.png" alt="table" />
<?php
/* ask for player names */
+ $i=0;
foreach( array("PlayerA","PlayerB","PlayerC","PlayerD") as $player)
{
srand((float) microtime() * 10000000);
$randkey = array_rand($names);
$rand = $names[$randkey];
+ echo "<span class=\"table".$i."\">";
+ $i++;
echo " Name: <select name=\"$player\" size=\"1\" /> \n";
foreach($names as $name)
{
@@ -61,10 +67,11 @@ function output_form_for_new_game($names)
else
echo " <option>$name</option>\n";
}
- echo " </select>\n";
+ echo " </select></span>\n";
}
?>
- <h2> Rules </h2>
+ </div>
+ <h2 class="rules"> Rules </h2>
<p> Some areas are grayed out which means that the rule is not implemented yet and therefore cannot be selected </p>
<p> ten of hearts:
<ul>