Blame view

frontend/modules/user/views/password/resetPasswordWrong.php 582 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <?php
  
  /* @var $this yii\web\View */
  /* @var $form yii\bootstrap\ActiveForm */
  /* @var $model \frontend\modules\user\models\form\ResetPasswordForm */
  
  use yii\helpers\{
      Html, Url
  };
  
  $this->title = Yii::t('user', 'Reset password');
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="site-reset-password">
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= Html::tag('p', Yii::t('user', 'Wrong password reset token.')) ?>
  
      <?= Html::a(Yii::t('user', 'Reset password'), ['/user/password/request-reset'], [
          'class' => 'btn btn-primary'
      ]) ?>
  </div>