bugzilla%micropipes.com 0e4e0f76cd - Ratecomment is now secured
- Made create, verify, recover, and reset scripts


git-svn-id: svn://10.0.0.236/trunk@188423 18797224-902f-48f8-a5cc-f745e15eee43
2006-01-29 06:49:48 +00:00

56 lines
1.3 KiB
PHP

<?php
/**
* Page to reset passwords for existing accounts
*
* @package amo
* @subpackage docs
*
*/
startProcessing('resetpassword.tpl', null, null, 'nonav');
require_once 'includes.php';
if (! (array_key_exists('email', $_GET) && array_key_exists('code', $_GET)) ) {
triggerError('There was an error processing your request.');
}
$user = user::getUserByEmail($_GET['email']);
if ($user === false) {
// bad email address
triggerError('There was an error processing your request.');
}
$authorized = $user->checkResetPasswordCode($_GET['email'], $_GET['code']);
if ($authorized === false) {
// bad code
triggerError('There was an error processing your request.');
}
$bad_input = false;
$success = false;
if (array_key_exists('password', $_POST)
&& array_key_exists('passwordconfirm', $_POST)
&& !empty($_POST['password'])) {
if ($_POST['password'] != $_POST['passwordconfirm']) {
$bad_input = true;
}
if ($bad_input === false) {
$user->setPassword($_POST['password']);
$success = true;
}
}
// Assign template variables.
$tpl->assign(
array( 'title' => 'Firefox Add-ons Password Recovery',
'currentTab' => null,
'bad_input' => $bad_input,
'success' => $success
)
);
?>