reconfirmation.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  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\Token $token
  13. */
  14. ?>
  15. <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;">
  16. <?= Yii::t('user', 'Hello') ?>,
  17. </p>
  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(
  20. 'user',
  21. 'We have received a request to change the email address for your account on {0}',
  22. Yii::$app->name
  23. ) ?>.
  24. <?= Yii::t('user', 'In order to complete your request, please click the link below') ?>.
  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. <?= Html::a(Html::encode($token->getUrl()), $token->getUrl()); ?>
  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 cannot click the link, please try pasting the text into your browser') ?>.
  31. </p>
  32. <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;">
  33. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.
  34. </p>