35 lines
920 B
Smarty
35 lines
920 B
Smarty
|
|
{**
|
||
|
|
* For the full copyright and license information, please view the LICENSE
|
||
|
|
* file that was distributed with this source code.
|
||
|
|
*}
|
||
|
|
{extends file='page.tpl'}
|
||
|
|
|
||
|
|
{block name='container_class'}container container--limited-sm{/block}
|
||
|
|
|
||
|
|
{block name='page_title'}
|
||
|
|
{l s='Forgot your password?' d='Shop.Theme.Customeraccount'}
|
||
|
|
{/block}
|
||
|
|
|
||
|
|
{block name='page_content'}
|
||
|
|
{if count($successes)}
|
||
|
|
<div class="alert alert-success" role="alert" tabindex="0">
|
||
|
|
<ul class="mb-0">
|
||
|
|
{foreach $successes as $success}
|
||
|
|
<li>{$success}</li>
|
||
|
|
{/foreach}
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
{/if}
|
||
|
|
{/block}
|
||
|
|
|
||
|
|
{block name='page_footer'}
|
||
|
|
<hr>
|
||
|
|
|
||
|
|
<div class="buttons-wrapper">
|
||
|
|
<a id="back-to-login" href="{$urls.pages.authentication}" class="btn btn-basic">
|
||
|
|
<i class="material-icons rtl-flip" aria-hidden="true"></i>
|
||
|
|
<span>{l s='Back to login' d='Shop.Theme.Actions'}</span>
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
{/block}
|