30 lines
995 B
Twig
30 lines
995 B
Twig
{#**
|
|
* File from http://PrestaShow.pl
|
|
*
|
|
* DISCLAIMER
|
|
* Do not edit or add to this file if you wish to upgrade this module to newer
|
|
* versions in the future.
|
|
*
|
|
* @author PrestaShow.pl <kontakt@prestashow.pl>
|
|
* @copyright Since 2014 PrestaShow.pl
|
|
* @license https://prestashow.pl/license
|
|
*#}
|
|
{% extends '@Modules/pshowsso/vendor/prestashow/presta-base-v1/Resources/views/admin/admin_controller.html.twig' %}
|
|
|
|
{% block module_content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-xl-10">
|
|
<div class="card">
|
|
<h3 class="card-header">
|
|
<i class="material-icons">edit</i>
|
|
{{ 'More services?'|trans({}, 'Modules.Pshowsso.Admin') }}
|
|
</h3>
|
|
|
|
<div class="card-body">
|
|
{{ 'Need to log in through another service? Write to us!'|trans({}, 'Modules.Pshowsso.Admin') }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|