Backend\Modules\Authentication\Actions\ResetPassword::loadForm PHP Метод

loadForm() приватный Метод

Load the form
private loadForm ( )
    private function loadForm()
    {
        $this->frm = new BackendForm();
        $this->frm->addPassword('backend_new_password');
        $this->frm->addPassword('backend_new_password_repeated');
        $this->frm->getField('backend_new_password')->setAttributes(array('autocomplete' => 'off'));
        $this->frm->getField('backend_new_password_repeated')->setAttributes(array('autocomplete' => 'off'));
    }