mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 16:01:15 +08:00
15 lines
365 B
PHP
15 lines
365 B
PHP
<?php
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $user common\models\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) ?>
|