added email to first player at the beginning of the game; fixed small layout issue
[e-DoKo.git] / output.php
index 1e747e67314e6705e7846e342b0e302e459c0c43..a85c2bb038ab812cd86d82b10a0c3a729208f23e 100644 (file)
@@ -2,23 +2,13 @@
 
 /* functions which only ouput html  */
 
-function display_status($gametype)
-{
-  echo "<div class=\"info\">";
-  echo " Gametype: $gametype";
-  echo "</div>\n";
-  
-  return;
-}
-
-function display_news()
+function display_links($email,$password)
 {
   global $wiki;
   echo "<div class=\"bug\">\n".
-    "  Please hit <strong>shift+reload</strong>.<br /><hr />\n".
-    "  The server now keeps score... (only from now on) <br /><hr />".
-    "  If you find more bugs, please list them in the <a href=\"".
-    $wiki."\">wiki</a>.\n</div>\n";
+    "Report bugs in the <a href=\"". $wiki."\">wiki</a>.<hr />\n";
+  output_link_to_user_page($email,$password);
+  echo  "</div>\n";
   return;
 }
 
@@ -28,7 +18,7 @@ function output_link_to_user_page($email,$password)
   echo "<form action=\"index.php\" method=\"post\">\n";
   echo "  <input type=\"hidden\" name=\"email\" value=\"".$email."\" />\n";
   echo "  <input type=\"hidden\" name=\"password\" value=\"".$password."\" />\n";
-  echo "  <input type=\"submit\" value=\"go to my user page\" />\n";
+  echo "  <input type=\"submit\" class=\"submitbutton\" value=\"go to my user page\" />\n";
   echo "</form>\n";
   echo "</div>\n";
   
@@ -248,11 +238,13 @@ function check_want_to_play($me)
   return;
 }
 
-function output_home_page()
+function output_home_page($pre,$game,$done)
 {
 ?>
     <p> If you want to play a game of Doppelkopf, you found the right place ;) </p>
-    <p> Please <a href="index.php?register">register</a>, in case you haven't done yet  <br />
+    <p> At the moment there are <?php echo "$pre";?> games that are being started and <?php echo"$game"; ?> games that are ongoing. 
+    <?php echo"$done";?> games have been completed on this server. </p>
+    <p> Please <a href="index.php?register">register</a>, in case you haven't done that yet  <br />
         or login with you email-address or name and password here:
     </p>
         <form action="index.php" method="post">
@@ -266,8 +258,8 @@ function output_home_page()
                  <td><label for="password">Password:</label></td>
                  <td><input type="password" id="password" name="password" size="20" maxlength="30" /></td>
               </tr><tr>
-                <td> <input type="submit" value="login" /></td>
-                <td></td>
+                <td> <input type="submit" class="submitbutton" name="login" value="login" /></td>
+                <td> <input type="submit" class="submitbutton" name="forgot" value="Forgot your password?" /></td>
               </tr>
              </table>
           </fieldset>
@@ -317,7 +309,6 @@ function output_header()
 <body onload="high_last();">
 <div class="header">
 <h1> Welcome to E-Doko </h1>
-<p> Revision: <?php echo "$REV"; ?></p>
 </div>
 
 <?php
@@ -328,6 +319,14 @@ function output_header()
 
 function output_footer()
 {
+  global $REV;
+
+  echo "<div class=\"footer\">\n";
+  echo "<p class=\"left\"> copyright 2006-2007 Arun Persaud</p>\n";
+  echo "<p class=\"right\"> Revision: $REV; <a href=\"http://svn.nubati.net/emaildoko/trunk/\">http://svn.nubati.net/emaildoko/trunk/</a></p> \n";
+  echo "\n";
+  echo "</div>\n";
+
   echo "</body>\n";
   echo "</html>\n";