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

loadForm() private method

Load the form.
private loadForm ( )
    private function loadForm()
    {
        $this->frm = new FrontendForm('login', null, null, 'loginForm');
        $this->frm->addText('email')->setAttributes(array('required' => null, 'type' => 'email'));
        $this->frm->addPassword('password')->setAttributes(array('required' => null));
        $this->frm->addCheckbox('remember', true);
    }