47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/**
|
|
* @var yii\base\View $this
|
|
* @var yii\widgets\ActiveForm $form
|
|
* @var app\models\LoginForm $model
|
|
*/
|
|
$this->title = 'Login';
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="site-login">
|
|
<h1><?php echo Html::encode($this->title); ?></h1>
|
|
|
|
<p>Please fill out the following fields to login:</p>
|
|
|
|
<?php $form = ActiveForm::begin(array(
|
|
'id' => 'login-form',
|
|
'options' => array('class' => 'form-horizontal'),
|
|
'fieldConfig' => array(
|
|
'template' => "<div class=\"col-lg-1\">{label}</div>\n<div class=\"col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
|
|
),
|
|
)); ?>
|
|
|
|
<?php echo $form->field($model, 'username'); ?>
|
|
|
|
<?php echo $form->field($model, 'password')->passwordInput(); ?>
|
|
|
|
<?php echo $form->field($model, 'rememberMe', array(
|
|
'template' => "<div class=\"col-lg-offset-1 col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
|
|
))->checkbox(); ?>
|
|
|
|
<div class="form-group">
|
|
<div class="col-lg-offset-1 col-lg-11">
|
|
<?php echo Html::submitButton('Login', array('class' => 'btn btn-primary')); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
<div class="col-lg-offset-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>
|