welcome.php 908 B

1234567891011121314151617181920212223242526272829303132
  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
  12. */
  13. ?>
  14. <?= Yii::t('user', 'Hello') ?>,
  15. <?= Yii::t('user', 'Your account on {0} has been created', Yii::$app->name) ?>.
  16. <?php if ($module->enableGeneratingPassword): ?>
  17. <?= Yii::t('user', 'We have generated a password for you') ?>:
  18. <?= $user->password ?>
  19. <?php endif ?>
  20. <?php if ($token !== null): ?>
  21. <?= Yii::t('user', 'In order to complete your registration, please click the link below') ?>.
  22. <?= $token->url ?>
  23. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  24. <?php endif ?>
  25. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.