2013-05-24 22:14:49 +08:00
|
|
|
<?php
|
|
|
|
|
2022-01-15 03:47:17 +08:00
|
|
|
/** @var yii\web\View $this */
|
2022-06-18 00:15:52 +08:00
|
|
|
/** @var yii\bootstrap5\ActiveForm $form */
|
2023-02-28 01:19:42 +08:00
|
|
|
|
2022-01-15 03:47:17 +08:00
|
|
|
/** @var app\models\LoginForm $model */
|
2014-06-20 20:11:45 +08:00
|
|
|
|
2022-06-18 00:15:52 +08:00
|
|
|
use yii\bootstrap5\ActiveForm;
|
|
|
|
use yii\bootstrap5\Html;
|
2015-07-09 17:47:20 +08:00
|
|
|
|
2024-02-10 17:41:07 +08:00
|
|
|
$this->title = '这里是弃用的登录,请不要在这里登录,开发后期将会移除这个页面';
|
2013-05-24 22:14:49 +08:00
|
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
|
|
?>
|
2013-08-10 19:33:24 +08:00
|
|
|
<div class="site-login">
|
2014-03-16 12:46:16 +08:00
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2014-03-16 12:46:16 +08:00
|
|
|
<p>Please fill out the following fields to login:</p>
|
2013-05-24 22:14:49 +08:00
|
|
|
|
2023-02-28 01:19:42 +08:00
|
|
|
<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'],
|
|
|
|
],
|
|
|
|
]); ?>
|
2013-09-08 21:58:28 +08:00
|
|
|
|
2023-02-28 01:19:42 +08:00
|
|
|
<?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>
|
2013-09-08 21:58:28 +08:00
|
|
|
|
2023-02-28 01:19:42 +08:00
|
|
|
<?= $form->field($model, 'password')->passwordInput() ?>
|
2013-09-08 21:58:28 +08:00
|
|
|
|
2023-02-28 01:19:42 +08:00
|
|
|
<?= $form->field($model, 'rememberMe')->checkbox([
|
|
|
|
'template' => "<div class=\"custom-control custom-checkbox\">{input} {label}</div>\n<div class=\"col-lg-8\">{error}</div>",
|
|
|
|
]) ?>
|
2013-09-08 21:58:28 +08:00
|
|
|
|
2023-02-28 01:19:42 +08:00
|
|
|
<div class="form-group">
|
|
|
|
<div>
|
|
|
|
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
|
|
|
|
</div>
|
2015-07-09 17:47:20 +08:00
|
|
|
</div>
|
2013-09-08 21:58:28 +08:00
|
|
|
|
2023-02-28 01:19:42 +08:00
|
|
|
<?php ActiveForm::end(); ?>
|
2013-09-08 21:58:28 +08:00
|
|
|
|
2023-02-28 01:19:42 +08:00
|
|
|
<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>
|
2014-03-16 12:46:16 +08:00
|
|
|
</div>
|
2013-08-09 08:00:48 +08:00
|
|
|
</div>
|