Blame view

frontend/views/site/requestPasswordResetToken.php 1.04 KB
b0f143c3   Yarik   first commit
1
2
3
4
5
6
7
8
9
  <?php
  
  /* @var $this yii\web\View */
  /* @var $form yii\bootstrap\ActiveForm */
  /* @var $model \frontend\models\PasswordResetRequestForm */
  
  use yii\helpers\Html;
  use yii\bootstrap\ActiveForm;
  
733c76e7   Виталий   Merge branch 'mas...
10
  $this->title = 'Заброс на сброс пароля';
b0f143c3   Yarik   first commit
11
12
  $this->params['breadcrumbs'][] = $this->title;
  ?>
733c76e7   Виталий   Merge branch 'mas...
13
14
15
16
  <div class="box-wr">
      <div class="box-all">
          <div class="site-request-password-reset">
              <h1><?= Html::encode($this->title) ?></h1>
b0f143c3   Yarik   first commit
17
  
733c76e7   Виталий   Merge branch 'mas...
18
              <p>Please fill out your email. A link to reset password will be sent there.</p>
b0f143c3   Yarik   first commit
19
  
733c76e7   Виталий   Merge branch 'mas...
20
21
22
              <div class="row">
                  <div class="col-lg-5">
                      <?php $form = ActiveForm::begin(['id' => 'request-password-reset-form']); ?>
b0f143c3   Yarik   first commit
23
  
733c76e7   Виталий   Merge branch 'mas...
24
                      <?= $form->field($model, 'email') ?>
b0f143c3   Yarik   first commit
25
  
733c76e7   Виталий   Merge branch 'mas...
26
27
28
                      <div class="form-group">
                          <?= Html::submitButton('Send', ['class' => 'btn btn-primary']) ?>
                      </div>
b0f143c3   Yarik   first commit
29
  
733c76e7   Виталий   Merge branch 'mas...
30
31
32
                      <?php ActiveForm::end(); ?>
                  </div>
              </div>
b0f143c3   Yarik   first commit
33
34
35
          </div>
      </div>
  </div>
733c76e7   Виталий   Merge branch 'mas...