Answer the question
In order to leave comments, you need to log in
Where can I change password and username in Yii2 on the standard login.php page?
<?= $form->field($model, 'username') ?>
<?= $form->field($model, 'password')->passwordInput() ?>
<?= $form->field($model, 'rememberMe', [
'template' => "<div class=\"col-lg-offset-1 col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
])->checkbox() ?>
<div class="form-group">
<div class="col-lg-offset-1 col-lg-11">
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
</div>
</div>
Answer the question
In order to leave comments, you need to log in
Solved the problem like this:
public function attributeLabels()
{
return [
'username' => 'Имя пользователя',
'password' => 'Пароль',
'rememberMe' => 'Запомнить меня'
];
}
Model app\models\User
There is also a form model in the same folder
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question