requestPasswordResetTokenSuccess.php 349 Bytes
<?php

/**
 * @var $this yii\web\View
 */

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', 'Check your email for further instructions.')) ?>
</div>