9d3b84517a
* Compatible with PHP 8.1 and Codeception 5 * Add PHP 8.1 to workflow * PHP 7.4 as a minimum * Updated dependencies Co-authored-by: Luke English <luke.english@ec2i.biz>
50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php
|
|
|
|
/** @var yii\web\View $this */
|
|
/** @var yii\bootstrap5\ActiveForm $form */
|
|
/** @var app\models\LoginForm $model */
|
|
|
|
use yii\bootstrap5\ActiveForm;
|
|
use yii\bootstrap5\Html;
|
|
|
|
$this->title = 'Login';
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="site-login">
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<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'],
|
|
],
|
|
]); ?>
|
|
|
|
<?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>
|
|
|
|
<?= $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>",
|
|
]) ?>
|
|
|
|
<div class="form-group">
|
|
<div class="offset-lg-1 col-lg-11">
|
|
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?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>
|
|
</div>
|