mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 17:57:38 +08:00
17 lines
367 B
PHP
17 lines
367 B
PHP
<?php
|
|
use yii\helpers\Html;
|
|
|
|
/**
|
|
* @var yii\web\View $this
|
|
* @var common\models\User $user
|
|
*/
|
|
|
|
$resetLink = Yii::$app->urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]);
|
|
?>
|
|
|
|
Hello <?= Html::encode($user->username) ?>,
|
|
|
|
Follow the link below to reset your password:
|
|
|
|
<?= Html::a(Html::encode($resetLink), $resetLink) ?>
|