yii2-netdisk/views/site/login.php

48 lines
1.6 KiB
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
/* @var $this yii\web\View */
2021-05-19 20:01:06 +08:00
/* @var $form yii\bootstrap4\ActiveForm */
/* @var $model app\models\LoginForm */
2021-05-19 20:01:06 +08:00
use yii\bootstrap4\ActiveForm;
use yii\bootstrap4\Html;
2013-05-24 22:14:49 +08:00
$this->title = 'Login';
$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
2014-03-16 12:46:16 +08:00
<?php $form = ActiveForm::begin([
'id' => 'login-form',
'layout' => 'horizontal',
2014-03-16 12:46:16 +08:00
'fieldConfig' => [
'template' => "{label}\n<div class=\"col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
2021-05-19 20:01:06 +08:00
'labelOptions' => ['class' => 'col-lg-1 col-form-label'],
2014-03-16 12:46:16 +08:00
],
]); ?>
2013-09-08 21:58:28 +08:00
2015-12-02 01:11:46 +08:00
<?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>
2013-09-08 21:58:28 +08:00
<?= $form->field($model, 'password')->passwordInput() ?>
2013-09-08 21:58:28 +08:00
<?= $form->field($model, 'rememberMe')->checkbox([
2021-05-19 20:01:06 +08:00
'template' => "<div class=\"offset-lg-1 col-lg-3 custom-control custom-checkbox\">{input} {label}</div>\n<div class=\"col-lg-8\">{error}</div>",
]) ?>
2013-09-08 21:58:28 +08:00
<div class="form-group">
2021-05-19 20:01:06 +08:00
<div class="offset-lg-1 col-lg-11">
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
</div>
2014-03-16 12:46:16 +08:00
</div>
2013-09-08 21:58:28 +08:00
2014-03-16 12:46:16 +08:00
<?php ActiveForm::end(); ?>
2013-09-08 21:58:28 +08:00
2021-05-19 20:01:06 +08:00
<div class="offset-lg-1" style="color:#999;">
2014-03-16 12:46:16 +08:00
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>
2013-08-09 08:00:48 +08:00
</div>