Url::toRoute('site/login'),
]); ?>
= Yii::t('app', 'your_personal_area') ?>
= $form->field(new LoginForm(), 'email',
[
'template' => '
',
]
)->textInput(['autofocus' => true]) ?>
= $form->field(new LoginForm(), 'password',
[
'template' => '
',
]
)->passwordInput() ?>
= $form->field(new LoginForm(), 'rememberMe',[
'checkboxTemplate' => "{beginLabel}\n{input}\n{labelTitle}\n{endLabel}",
])->checkbox() ?>
= Html::a(Yii::t('app', 'forgot_password'), ['site/request-password-reset'],['class'=>'forgot_pass_link']) ?>
= Html::submitButton(Yii::t('app','enter'), ['class' => 'my_cust_btn', 'name' => 'login-button']) ?>