forgotpasswordsubmit.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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="account-ds">
  11. <div class="bar bar-nav account-top-m">
  12. <a external class="button button-link button-nav pull-left" href="<?= Yii::$service->url->getUrl('customer/account/index'); ?>">
  13. <span class="icon icon-left"></span>
  14. </a>
  15. <h1 class='title'><?= Yii::$service->page->translate->__('Forget Password Send Success'); ?></h1>
  16. </div>
  17. </div>
  18. <?= Yii::$service->page->widget->render('flashmessage'); ?>
  19. <div class="customer-forgot-success ">
  20. <?php if(!empty($identity)): ?>
  21. <div>
  22. <?= Yii::$service->page->translate->__('We\'ve sent a message to the email address'); ?> <?= $identity['email'] ?>
  23. <?= Yii::$service->page->translate->__('Please follow the instructions provided in the message to reset your password.'); ?>
  24. </div>
  25. <div>
  26. <p><?= Yii::$service->page->translate->__('Didn\'t receive the mail from us?'); ?> <a external href="<?= $forgotPasswordUrl ?>"><?= Yii::$service->page->translate->__('click here to retry'); ?></a></p>
  27. <p><?= Yii::$service->page->translate->__('Check your bulk or junk email folder.'); ?></p>
  28. <?php
  29. $param = ['logUrlB' => '<a external href="'. $contactUrl.' ">','logUrlE' => '</a> '];
  30. ?>
  31. <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>
  32. </div>
  33. <?php else: ?>
  34. <div>
  35. <?php
  36. $param = ['logUrlB' => '<a external href="'. $forgotPasswordUrl.' ">','logUrlE' => '</a> '];
  37. ?>
  38. <?= Yii::$service->page->translate->__('Email address do not exist, please {logUrlB} click here {logUrlE} to re-enter!',$param); ?>
  39. </div>
  40. <div>
  41. <?php endif; ?>
  42. </div>