Blame view

frontend/modules/user/views/password/resetPasswordSuccess.php 500 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
23
  <?php
  
  /**
   * @var $this yii\web\View
   * @var $module \frontend\modules\user\User
   */
  
  use yii\helpers\{
      Html
  };
  
  $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', 'New password was saved.')) ?>
  
      <?= Html::a(Yii::t('user', 'Login'), $module->params['login']['index'], [
          'class' => 'btn btn-primary'
      ]) ?>
  </div>