welcome.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. use yii\helpers\Html;
  11. /**
  12. * @var dektrium\user\Module $module
  13. * @var dektrium\user\models\User $user
  14. * @var dektrium\user\models\Token $token
  15. * @var bool $showPassword
  16. */
  17. ?>
  18. <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
  19. <?= Yii::t('user', 'Hello') ?>,
  20. </p>
  21. <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
  22. <?= Yii::t('user', 'Your account on {0} has been created', Yii::$app->name) ?>.
  23. <?php if ($showPassword || $module->enableGeneratingPassword): ?>
  24. <?= Yii::t('user', 'We have generated a password for you') ?>: <strong><?= $user->password ?></strong>
  25. <?php endif ?>
  26. </p>
  27. <?php if ($token !== null): ?>
  28. <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
  29. <?= Yii::t('user', 'In order to complete your registration, please click the link below') ?>.
  30. </p>
  31. <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
  32. <?= Html::a(Html::encode($token->url), $token->url); ?>
  33. </p>
  34. <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
  35. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  36. </p>
  37. <?php endif ?>
  38. <p style="font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.6; font-weight: normal; margin: 0 0 10px; padding: 0;">
  39. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.
  40. </p>