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
364 B
16 lines
364 B
11 years ago
|
<?php
|
||
|
use yii\helpers\Html;
|
||
|
|
||
|
/**
|
||
|
* @var yii\base\View $this
|
||
|
* @var common\models\User $user;
|
||
|
*/
|
||
|
|
||
|
$resetLink = $this->context->createUrl('site/resetPassword', 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)?>
|