recovery.php 790 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of the Dektrium project.
  4. *
  5. * (c) Dektrium project <http://github.com/dektrium>
  6. *
  7. * For the full copyright and license information, please view the LICENSE.md
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * @var dektrium\user\models\User $user
  12. * @var dektrium\user\models\Token $token
  13. */
  14. ?>
  15. <?= Yii::t('user', 'Hello') ?>,
  16. <?= Yii::t('user', 'We have received a request to reset the password for your account on {0}', Yii::$app->name) ?>.
  17. <?= Yii::t('user', 'Please click the link below to complete your password reset') ?>.
  18. <?= $token->url ?>
  19. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  20. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.