1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <div class="main container one-column">
- <?= Yii::$service->page->widget->render('breadcrumbs',$this); ?>
- <?php if(!empty($identity)): ?>
- <div>
- <?= Yii::$service->page->translate->__('We\'ve sent a message to the email address'); ?> <?= $identity['email'] ?>
- <?= Yii::$service->page->translate->__('Please follow the instructions provided in the message to reset your password.'); ?>
- </div>
- <div>
- <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>
- <p><?= Yii::$service->page->translate->__('Check your bulk or junk email folder.'); ?></p>
- <?php
- $param = ['logUrlB' => '<a href="'. $contactUrl.' ">','logUrlE' => '</a> '];
- ?>
- <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>
- </div>
- <?php else: ?>
- <div>
- <?php
- $param = ['logUrlB' => '<a href="'. $forgotPasswordUrl.' ">','logUrlE' => '</a> '];
- ?>
- <?= Yii::$service->page->translate->__('Email address do not exist, please {logUrlB} click here {logUrlE} to re-enter!',$param); ?>
- </div>
- <div>
- <?php endif; ?>
- </div>
|