summaryrefslogtreecommitdiffstats
path: root/output.php
diff options
context:
space:
mode:
Diffstat (limited to 'output.php')
-rw-r--r--output.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/output.php b/output.php
index a8d6bf1..39f67b0 100644
--- a/output.php
+++ b/output.php
@@ -10,11 +10,18 @@ function output_user_settings()
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;