NEW FEATURE: addicted people can turn of a lot of the email spam and just check...
[e-DoKo.git] / output.php
index 5c5e0aa8388b12443810384b587aa8b2d6e08bc7..39f67b06c7ddc1d430918fc1d0f2bd68a693f94f 100644 (file)
@@ -2,7 +2,7 @@
 
 /* functions which only ouput html  */
 
-function output_user_settings($email,$password)
+function output_user_settings()
 {
   global $PREF;
 
@@ -10,11 +10,18 @@ function output_user_settings($email,$password)
   echo "<h4> Settings </h4>\n";
   echo "<a href=\"index.php?passwd=ask\">change password</a><br />";
 
+  echo "<h5> Card set </h5>\n";
   if( $PREF["cardset"] == "english" )
     echo "<a href=\"index.php?setpref=germancards\">use german cards</a><br />";
   else
     echo "<a href=\"index.php?setpref=englishcards\">use english cards</a> <br />";
 
+  echo "<h5> Email </h5>\n";
+  if( $PREF["email"] == "emailaddict" )
+    echo "<a href=\"index.php?setpref=emailnonaddict\">I'm not addicted (emails for each move)</a><br />";
+  else
+    echo "<a href=\"index.php?setpref=emailaddict\">Addicted (minimal amount of emails)</a> <br />";
+
   echo "</div>\n";
 
   return;