forgotpasswordsubmit.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. ?>
  10. <div class="main container one-column">
  11. <?= Yii::$service->page->widget->render('breadcrumbs',$this); ?>
  12. <?php if(!empty($identity)): ?>
  13. <div>
  14. <?= Yii::$service->page->translate->__('We\'ve sent a message to the email address'); ?> <?= $identity['email'] ?>
  15. <?= Yii::$service->page->translate->__('Please follow the instructions provided in the message to reset your password.'); ?>
  16. </div>
  17. <div>
  18. <p><?= Yii::$service->page->translate->__('Didn\'t receive the mail from us?'); ?> <a href="<?= $forgotPasswordUrl ?>"><?= Yii::$service->page->translate->__('click here to retry'); ?></a></p>
  19. <p><?= Yii::$service->page->translate->__('Check your bulk or junk email folder.'); ?></p>
  20. <?php
  21. $param = ['logUrlB' => '<a href="'. $contactUrl.' ">','logUrlE' => '</a> '];
  22. ?>
  23. <p><?= Yii::$service->page->translate->__('Confirm your identity to reset password ,If you still can\'t find it, click {logUrlB} support center {logUrlE} for help',$param); ?></p>
  24. </div>
  25. <?php else: ?>
  26. <div>
  27. <?php
  28. $param = ['logUrlB' => '<a href="'. $forgotPasswordUrl.' ">','logUrlE' => '</a> '];
  29. ?>
  30. <?= Yii::$service->page->translate->__('Email address do not exist, please {logUrlB} click here {logUrlE} to re-enter!',$param); ?>
  31. </div>
  32. <div>
  33. <?php endif; ?>
  34. </div>