Blame view

frontend/views/site/login.php 1.5 KB
550eac02   Administrator   second
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  <?php
  use yii\helpers\Html;
  use yii\bootstrap\ActiveForm;
  
  /* @var $this yii\web\View */
  /* @var $form yii\bootstrap\ActiveForm */
  /* @var $model app\models\LoginForm */
  
  $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',
          'options' => ['class' => 'form-horizontal'],
          'fieldConfig' => [
              'template' => "{label}\n<div class=\"col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
              'labelOptions' => ['class' => 'col-lg-1 control-label'],
          ],
      ]); ?>
  
      <?= $form->field($model, 'username') ?>
  
      <?= $form->field($model, 'password')->passwordInput() ?>
  
      <?= $form->field($model, 'rememberMe', [
          '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">
              <?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
          </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>