custom/plugins/ThemeOkeOnline/src/Resources/views/storefront/page/account/register/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@parent/storefront/page/account/register/index.html.twig' %}
  2. {% set seperateLoginAndRegister = theme_config('accountSettingsLayoutSeperateLoginAndSignup') %}
  3. {% block page_account_register_inner %}
  4.     <div class="row justify-content-center mt-4">
  5.         {% if seperateLoginAndRegister == false or ( seperateLoginAndRegister == true and activeRoute == 'frontend.account.login.page' ) %}
  6.             {% block page_account_register_login_container %}
  7.                 <div class="{{ seperateLoginAndRegister ? 'col-lg-6' : 'col-lg-4' }}">
  8.                     {% sw_include '@Storefront/storefront/component/account/login.html.twig' with {
  9.                         'cardTitle': "account.loginHeader"|trans|sw_sanitize
  10.                     } %}
  11.                     {% block page_account_register_advantages %}
  12.                         {{ parent() }}
  13.                     {% endblock %}
  14.                 </div>
  15.             {% endblock %}
  16.         {% endif %}
  17.         {% if seperateLoginAndRegister == false or ( seperateLoginAndRegister == true and activeRoute == 'frontend.account.register.page' ) %}
  18.             {% block page_account_register_container %}
  19.                 {% if seperateLoginAndRegister %}<div class="h2">Registreren</div>{% endif %}
  20.                 <div class="{{ seperateLoginAndRegister ? 'col-lg-12' : 'col-lg-8' }}">
  21.                     {% sw_include '@Storefront/storefront/component/account/register.html.twig' with {
  22.                         'cardTitle': "account.registerPersonalHeader"|trans|sw_sanitize
  23.                     } %}
  24.                 </div>
  25.             {% endblock %}
  26.         {% endif %}
  27.     </div>
  28. {% endblock %}