Frontend\Modules\Profiles\Actions\ResetPassword::loadForm PHP Method

loadForm() private method

Load the form.
private loadForm ( )
    private function loadForm()
    {
        // create the form
        $this->frm = new FrontendForm('resetPassword', null, null, 'resetPasswordForm');
        // create & add elements
        $this->frm->addPassword('password', null, null, 'inputText showPasswordInput')->setAttributes(array('required' => null));
        $this->frm->addCheckbox('show_password');
    }