2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Forgot password page.
22 * @copyright 2006 Petr Skoda {@link http://skodak.org}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') ||
die();
27 require_once($CFG->libdir
.'/formslib.php');
28 require_once($CFG->dirroot
.'/user/lib.php');
31 * Reset forgotten password form definition.
35 * @copyright 2006 Petr Skoda {@link http://skodak.org}
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 class login_forgot_password_form
extends moodleform
{
41 * Define the forgot password form.
43 function definition() {
46 $mform = $this->_form
;
47 $mform->setDisableShortforms(true);
49 $mform->addElement('header', 'searchbyusername', get_string('searchbyusername'), '');
51 $purpose = user_edit_map_field_purpose($USER->id
, 'username');
52 $mform->addElement('text', 'username', get_string('username'), 'size="20"' . $purpose);
53 $mform->setType('username', PARAM_RAW
);
55 $submitlabel = get_string('search');
56 $mform->addElement('submit', 'submitbuttonusername', $submitlabel);
58 $mform->addElement('header', 'searchbyemail', get_string('searchbyemail'), '');
60 $purpose = user_edit_map_field_purpose($USER->id
, 'email');
61 $mform->addElement('text', 'email', get_string('email'), 'maxlength="100" size="30"' . $purpose);
62 $mform->setType('email', PARAM_RAW_TRIMMED
);
64 $submitlabel = get_string('search');
65 $mform->addElement('submit', 'submitbuttonemail', $submitlabel);
69 * Validate user input from the forgot password form.
70 * @param array $data array of submitted form fields.
71 * @param array $files submitted with the form.
72 * @return array errors occuring during validation.
74 function validation($data, $files) {
76 $errors = parent
::validation($data, $files);
77 $errors +
= core_login_validate_forgot_password_data($data);