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
380 B
16 lines
380 B
<?php |
|
use yii\helpers\Html; |
|
|
|
/** |
|
* @var yii\base\View $this |
|
* @var common\models\User $user; |
|
*/ |
|
|
|
$resetLink = Yii::$app->urlManager->createAbsoluteUrl('site/reset-password', array('token' => $user->password_reset_token)); |
|
?> |
|
|
|
Hello <?php echo Html::encode($user->username)?>, |
|
|
|
Follow the link below to reset your password: |
|
|
|
<?php Html::a(Html::encode($resetLink), $resetLink)?>
|