summaryrefslogtreecommitdiffstats
path: root/output.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-06-23 15:53:30 +0200
committerArun Persaud <arun@nubati.net>2007-06-23 19:30:38 +0200
commit7405ce4fabf64e905e7b7371764d74dbc4b1b198 (patch)
treee6f7ef2ca6cde43f59fab410716c4c96db8865c5 /output.php
parente7748e94add02ab4530a3d75276bb942430d35f4 (diff)
downloade-DoKo-7405ce4fabf64e905e7b7371764d74dbc4b1b198.tar.gz
e-DoKo-7405ce4fabf64e905e7b7371764d74dbc4b1b198.tar.bz2
e-DoKo-7405ce4fabf64e905e7b7371764d74dbc4b1b198.zip
NEW FEATURE: password recovery is now working
Added a simple form of password recovery. The user gets send an email with the new password, which is valid for 24h. The user can request a maximum of 5 passwords within 24h to prevent filling up the database with garbage.
Diffstat (limited to 'output.php')
-rw-r--r--output.php35
1 files changed, 34 insertions, 1 deletions
diff --git a/output.php b/output.php
index 922b439..fe4a971 100644
--- a/output.php
+++ b/output.php
@@ -34,7 +34,8 @@ function output_user_settings($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\" class=\"submitbutton\" name=\"passwd\" value=\"change password\" /> <br />\n";
+ echo " <input type=\"hidden\" name=\"passwd\" value=\"ask\" />\n";
+ echo " <input type=\"submit\" class=\"submitbutton\" name=\"pass\" value=\"change password\" /> <br />\n";
echo "</form>\n";
echo "<form action=\"index.php\" method=\"post\">\n";
echo " <input type=\"hidden\" name=\"email\" value=\"".$email."\" />\n";
@@ -404,4 +405,36 @@ function output_footer()
return;
}
+
+function output_password_recovery($email,$password)
+{
+?>
+ <form action="index.php" method="post">
+<?php
+ echo " <input type=\"hidden\" name=\"email\" value=\"".$email."\" />\n";
+ echo " <input type=\"hidden\" name=\"password\" value=\"".$password."\" />\n";
+ echo " <input type=\"hidden\" name=\"passwd\" value=\"set\" />\n";
+?>
+ <fieldset>
+ <legend>Password recovery</legend>
+ <table>
+ <tr>
+ <td><label for="email">Old password:</label></td>
+ <td><input type="password" id="password0" name="password0" size="20" maxlength="30" /> </td>
+ </tr><tr>
+ <td><label for="password">New password:</label></td>
+ <td><input type="password" id="password1" name="password1" size="20" maxlength="30" /></td>
+ </tr><tr>
+ <td><label for="password">Retype:</label></td>
+ <td><input type="password" id="password2" name="password2" size="20" maxlength="30" /></td>
+ </tr><tr>
+ <td></td>
+ <td> <input type="submit" class="submitbutton" name="passwd" value="set" /></td>
+ </tr>
+ </table>
+ </fieldset>
+ </form>
+
+<?php
+}
?> \ No newline at end of file