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