Logo white

Timur Kastemirov / testTimurArtwebShop

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • testTimurArtwebShop
  • common
  • mail
  • passwordResetToken-text.php
  • first commit
    c92318c6
    Timur Kastemirov authored
    2017-06-21 16:51:11 +0300  
    Browse Code ยป
passwordResetToken-text.php 362 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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 ?>