You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
453 B
16 lines
453 B
7 years ago
|
<?php
|
||
|
use yii\helpers\Html;
|
||
|
|
||
|
/* @var $this yii\web\View */
|
||
|
/* @var $user \core\entities\user\User */
|
||
|
|
||
|
$resetLink = Yii::$app->get('frontendUrlManager')->createAbsoluteUrl(['auth/reset/confirm', 'token' => $user->password_reset_token]);
|
||
|
?>
|
||
|
<div class="password-reset">
|
||
|
<p>Hello <?= Html::encode($user->username) ?>,</p>
|
||
|
|
||
|
<p>Follow the link below to reset your password:</p>
|
||
|
|
||
|
<p><?= Html::a(Html::encode($resetLink), $resetLink) ?></p>
|
||
|
</div>
|