1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?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>