blob: 6515bfc5d85d6ed26f15cf2d37041c1473136054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
/**
* Page for resetting a forgotten password
*
* @package Elgg.Core
* @subpackage Registration
*/
if (elgg_is_logged_in()) {
forward();
}
$user_guid = get_input('u');
$code = get_input('c');
$user = get_entity($user_guid);
// don't check code here to avoid automated attacks
if (!$user instanceof ElggUser) {
register_error(elgg_echo('user:passwordreset:unknown_user'));
forward();
}
$params = array(
'guid' => $user_guid,
'code' => $code,
);
$form = elgg_view_form('user/passwordreset', array('class' => 'elgg-form-account'), $params);
$title = elgg_echo('resetpassword');
$content = elgg_view_title(elgg_echo('resetpassword')) . $form;
$body = elgg_view_layout('one_column', array('content' => $content));
echo elgg_view_page($title, $body);
|