Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{**
* 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">&#xE5C4;</i>
<span>{l s='Back to login' d='Shop.Theme.Actions'}</span>
</a>
</div>
{/block}