confirmation.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  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\models\User $user
  13. * @var dektrium\user\models\Token $token
  14. */
  15. ?>
  16. <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;">
  17. <?= Yii::t('user', 'Hello') ?>,
  18. </p>
  19. <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;">
  20. <?= Yii::t('user', 'Thank you for signing up on {0}', Yii::$app->name) ?>.
  21. <?= Yii::t('user', 'In order to complete your registration, please click the link below') ?>.
  22. </p>
  23. <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;">
  24. <?= Html::a(Html::encode($token->url), $token->url) ?>
  25. </p>
  26. <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;">
  27. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  28. </p>
  29. <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;">
  30. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.
  31. </p>