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

loadForm() private method

Load the form.
private loadForm ( )
    private function loadForm()
    {
        $this->frm = new FrontendForm('register', null, null, 'registerForm');
        $this->frm->addText('display_name');
        $this->frm->addText('email')->setAttributes(array('required' => null, 'type' => 'email'));
        $this->frm->addPassword('password', null, null, 'inputText showPasswordInput')->setAttributes(array('required' => null));
        $this->frm->addCheckbox('show_password');
    }