passwordResetToken-text.php 683 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $user common\modules\user\models\User */
  4. $resetLink = Yii::$app->urlManager->createAbsoluteUrl(['/user/security/reset-password', 'token' => $user->password_reset_token]);
  5. ?>
  6. <?= Yii::t('user', 'Hello') ?>,
  7. <?= Yii::t('user', 'We have received a request to reset the password for your account on {0}', Yii::$app->config->get('SITE_NAME')) ?>.
  8. <?= Yii::t('user', 'Please click the link below to complete your password reset') ?>.
  9. <?= $resetLink ?>
  10. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  11. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.