Fix #256: Fix error message in login form (#257)

This commit is contained in:
Bizley 2021-10-31 19:06:57 +00:00 committed by GitHub
parent f878dd9084
commit 1d283a477a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,8 +19,10 @@ $this->params['breadcrumbs'][] = $this->title;
'id' => 'login-form', 'id' => 'login-form',
'layout' => 'horizontal', 'layout' => 'horizontal',
'fieldConfig' => [ 'fieldConfig' => [
'template' => "{label}\n<div class=\"col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>", 'template' => "{label}\n{input}\n{error}",
'labelOptions' => ['class' => 'col-lg-1 col-form-label'], 'labelOptions' => ['class' => 'col-lg-1 col-form-label mr-lg-3'],
'inputOptions' => ['class' => 'col-lg-3 form-control'],
'errorOptions' => ['class' => 'col-lg-7 invalid-feedback'],
], ],
]); ?> ]); ?>