reconfirmation.php 1.7 KB

123456789101112131415161718192021222324252627282930313233
  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('user', 'We have received a request to change the email address for your account on {0}', Yii::$app->name) ?>.
  20. <?= Yii::t('user', 'In order to complete your request, please click the link below') ?>.
  21. </p>
  22. <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;">
  23. <?= Html::a(Html::encode($token->getUrl()), $token->getUrl()); ?>
  24. </p>
  25. <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;">
  26. <?= Yii::t('user', 'If you cannot click the link, please try pasting the text into your browser') ?>.
  27. </p>
  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', 'If you did not make this request you can ignore this email') ?>.
  30. </p>