Blame view

frontend/views/site/requestPasswordResetToken.php 1002 Bytes
c237629a   Anastasia   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;
  
d9c166d7   alex   Перевёл почти все...
10
  $this->title = \Yii::t('app','Request password reset');
c237629a   Anastasia   first commit
11
12
13
14
15
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="site-request-password-reset">
      <h1><?= Html::encode($this->title) ?></h1>
  
d9c166d7   alex   Перевёл почти все...
16
17
18
      <p>
  <!--        Please fill out your email. A link to reset password will be sent there.-->
          <?=\Yii::t('app','RPRT short');?></p>
c237629a   Anastasia   first commit
19
20
21
22
23
24
25
26
  
      <div class="row">
          <div class="col-lg-5">
              <?php $form = ActiveForm::begin(['id' => 'request-password-reset-form']); ?>
  
                  <?= $form->field($model, 'email')->textInput(['autofocus' => true]) ?>
  
                  <div class="form-group">
d9c166d7   alex   Перевёл почти все...
27
                      <?= Html::submitButton(\Yii::t('app','Send'), ['class' => 'btn btn-primary']) ?>
c237629a   Anastasia   first commit
28
29
30
31
32
33
                  </div>
  
              <?php ActiveForm::end(); ?>
          </div>
      </div>
  </div>