Skip to content

Commit

Permalink
Fix #285: Fix CSS issues in login form, homepage and form-group class (
Browse files Browse the repository at this point in the history
  • Loading branch information
lmsmartins authored Feb 27, 2023
1 parent 980c25e commit 6938fc4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 26 deletions.
6 changes: 3 additions & 3 deletions views/site/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
?>
<div class="site-index">

<div class="jumbotron text-center bg-transparent">
<div class="jumbotron text-center bg-transparent mt-5 mb-5">
<h1 class="display-4">Congratulations!</h1>

<p class="lead">You have successfully created your Yii-powered application.</p>
Expand All @@ -17,7 +17,7 @@
<div class="body-content">

<div class="row">
<div class="col-lg-4">
<div class="col-lg-4 mb-3">
<h2>Heading</h2>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
Expand All @@ -27,7 +27,7 @@

<p><a class="btn btn-outline-secondary" href="http://www.yiiframework.com/doc/">Yii Documentation &raquo;</a></p>
</div>
<div class="col-lg-4">
<div class="col-lg-4 mb-3">
<h2>Heading</h2>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
Expand Down
52 changes: 29 additions & 23 deletions views/site/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

/** @var yii\web\View $this */
/** @var yii\bootstrap5\ActiveForm $form */

/** @var app\models\LoginForm $model */

use yii\bootstrap5\ActiveForm;
Expand All @@ -15,35 +16,40 @@

<p>Please fill out the following fields to login:</p>

<?php $form = ActiveForm::begin([
'id' => 'login-form',
'layout' => 'horizontal',
'fieldConfig' => [
'template' => "{label}\n{input}\n{error}",
'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'],
],
]); ?>
<div class="row">
<div class="col-lg-5">

<?php $form = ActiveForm::begin([
'id' => 'login-form',
'fieldConfig' => [
'template' => "{label}\n{input}\n{error}",
'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'],
],
]); ?>

<?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>
<?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>

<?= $form->field($model, 'password')->passwordInput() ?>
<?= $form->field($model, 'password')->passwordInput() ?>

<?= $form->field($model, 'rememberMe')->checkbox([
'template' => "<div class=\"offset-lg-1 col-lg-3 custom-control custom-checkbox\">{input} {label}</div>\n<div class=\"col-lg-8\">{error}</div>",
]) ?>
<?= $form->field($model, 'rememberMe')->checkbox([
'template' => "<div class=\"custom-control custom-checkbox\">{input} {label}</div>\n<div class=\"col-lg-8\">{error}</div>",
]) ?>

<div class="form-group">
<div class="offset-lg-1 col-lg-11">
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
<div class="form-group">
<div>
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
</div>
</div>
</div>

<?php ActiveForm::end(); ?>
<?php ActiveForm::end(); ?>

<div class="offset-lg-1" style="color:#999;">
You may login with <strong>admin/admin</strong> or <strong>demo/demo</strong>.<br>
To modify the username/password, please check out the code <code>app\models\User::$users</code>.
<div style="color:#999;">
You may login with <strong>admin/admin</strong> or <strong>demo/demo</strong>.<br>
To modify the username/password, please check out the code <code>app\models\User::$users</code>.
</div>

</div>
</div>
</div>
4 changes: 4 additions & 0 deletions web/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,7 @@ a.desc:after {
.nav > li > form > button.logout:focus {
outline: none;
}

.form-group {
margin-bottom: 1rem;
}

0 comments on commit 6938fc4

Please sign in to comment.