{% sw_extends '@Storefront/storefront/utilities/offcanvas.html.twig' %}
{% block utilities_offcanvas_content %}
<div class="account-menu">
{% block layout_header_actions_account_widget_dropdown_header %}
{% if not context.customer.guest %}
<div class="dropdown-header account-menu-header">
{{ "account.myAccount"|trans|sw_sanitize }}
</div>
{% endif %}
{% endblock %}
{% block layout_header_actions_account_widget_dropdown_login %}
{% if not context.customer %}
<div class="account-menu-login">
<a href="{{ path('frontend.account.login.page') }}"
title="{{ "account.loginSubmit"|trans|striptags }}"
class="btn btn-primary account-menu-login-button">
{{ "account.loginSubmit"|trans|sw_sanitize }}
</a>
<div class="account-menu-register">
{{ "account.orRegister"|trans|sw_sanitize }} <a href="{{ path('frontend.account.login.page') }}"
title="{{ "account.orRegisterLink"|trans|striptags }}">{{ "account.orRegisterLink"|trans|striptags }}</a>
</div>
{% if page.header.activeLanguage.translationCode.code == 'en-GB' %}
{% set linkname = "Dealer registration form" %}
{% set link = "https://shop.schutzkleidung.de/en/Dealer-registration-form" %}
{% elseif page.header.activeLanguage.translationCode.code == 'nl-NL' %}
{% set linkname = "Registreer u als dealer" %}
{% set link = "https://shop.schutzkleidung.de/nl/Registratieformulier-voor-dealers" %}
{% elseif page.header.activeLanguage.translationCode.code == 'es-ES' %}
{% set linkname = "RegĂstrate como distribuidor" %}
{% set link = "https://shop.schutzkleidung.de/es/Formulario-de-registro-de-distribuidor" %}
{% elseif page.header.activeLanguage.translationCode.code == 'fr-FR' %}
{% set linkname = "S'inscrire en tant que revendeur" %}
{% set link = "https://shop.schutzkleidung.de/fr/Formulaire-d-inscription-du-concessionnaire" %}
{% elseif page.header.activeLanguage.translationCode.code == 'it-IT' %}
{% set linkname = "Registrati come rivenditore" %}
{% set link = "https://shop.schutzkleidung.de/it/Modulo-di-registrazione-del-rivenditore" %}
{% else %}
{% set linkname = "Registrieren als Händler" %}
{% set link = "https://shop.schutzkleidung.de/Registrierungsformular-fuer-Haendler" %}
{% endif %}
<div id="heandlerreg" >
<a href="{{ link }}">{{ linkname }}</a>
</div>
</div>
{% endif %}
{% endblock %}
{% block layout_header_actions_account_widget_dropdown_links %}
<div class="account-menu-links">
{% sw_include '@Storefront/storefront/page/account/sidebar.html.twig' with {'headerWidget': true} %}
</div>
{% endblock %}
</div>
{% endblock %}