new_password.php 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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\Password $password
  15. */
  16. ?>
  17. <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;">
  18. <?= Yii::t('user', 'Hello') ?>,
  19. </p>
  20. <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;">
  21. <?= Yii::t('user', 'Your account on {0} has a new password', Yii::$app->name) ?>.
  22. <?= Yii::t('user', 'We have generated a password for you') ?>: <strong><?= $user->password ?></strong>
  23. </p>
  24. <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;">
  25. <?= Yii::t('user', 'If you did not make this request you can ignore this email') ?>.
  26. </p>