libdir.'/formslib.php'; class login_forgot_password_form extends moodleform { function definition() { $mform =& $this->_form; $username = $this->_customdata['username']; $mform->addElement('hidden', 'username', $username); $mform->setType('username', PARAM_RAW); $this->add_action_buttons(false, get_string('continue')); } } ?>