welcome.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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') ?>:
  25. <strong><?= $user->password ?></strong>
  26. <?php endif ?>
  27. </p>
  28. <?php $token=null; ?>
  29. <?php if ($token !== null): ?>
  30. <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;">
  31. <?= Yii::t('user', 'In order to complete your registration, please click the link below') ?>.
  32. </p>
  33. <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;">
  34. <?= Html::a(Html::encode($token->url), $token->url); ?>
  35. </p>
  36. <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;">
  37. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  38. <?php endif ?>
  39. </p>
  40. <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;">
  41. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.
  42. </p>