mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			293 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/* @var $this yii\web\View */
 | 
						|
/* @var $user common\models\User */
 | 
						|
 | 
						|
$resetLink = Yii::$app->urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]);
 | 
						|
?>
 | 
						|
Hello <?= $user->username ?>,
 | 
						|
 | 
						|
Follow the link below to reset your password:
 | 
						|
 | 
						|
<?= $resetLink ?>
 |