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
						
					
					
						
							368 B
						
					
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							368 B
						
					
					
				| <?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) ?>
 | |
| 
 |