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.
 
 
 
 
 

15 lines
458 B

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $user \core\entities\user\User */
$confirmLink = Yii::$app->get('frontendUrlManager')->createAbsoluteUrl(['auth/signup/confirm', 'token' => $user->email_confirm_token]);
?>
<div class="password-reset">
<p>Hello <?= Html::encode($user->username) ?>,</p>
<p>Follow the link below to confirm your email:</p>
<p><?= Html::a(Html::encode($confirmLink), $confirmLink) ?></p>
</div>