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.
17 lines
368 B
17 lines
368 B
11 years ago
|
<?php
|
||
|
use yii\helpers\Html;
|
||
|
|
||
|
/**
|
||
11 years ago
|
* @var yii\web\View $this
|
||
11 years ago
|
* @var common\models\User $user;
|
||
|
*/
|
||
|
|
||
11 years ago
|
$resetLink = Yii::$app->urlManager->createAbsoluteUrl('site/reset-password', ['token' => $user->password_reset_token]);
|
||
11 years ago
|
?>
|
||
|
|
||
11 years ago
|
Hello <?= Html::encode($user->username) ?>,
|
||
11 years ago
|
|
||
|
Follow the link below to reset your password:
|
||
|
|
||
11 years ago
|
<?= Html::a(Html::encode($resetLink), $resetLink) ?>
|