{% sw_extends '@Storefront/storefront/component/privacy-notice.html.twig' %}
{% block component_privacy_notice %}
<div class="form-text privacy-notice">
{% block component_privacy_title %}
<strong>{{ "general.privacyTitle"|trans|sw_sanitize }}{{ "general.required"|trans|sw_sanitize }}</strong></br>
{% endblock %}
{% block component_privacy_dpi %}
{% if config('core.loginRegistration.requireDataProtectionCheckbox') == 1 || isCheckoutPrivacyCheckbox %}
<div class="{{ formCheckboxWrapperClass }} data-protection-information">
{% block component_privacy_dpi_checkbox %}
<input type="checkbox"
class="{{ formCheckInputClass }} {% if formViolations.getViolations('/acceptedDataProtection') is not empty %} is-invalid{% endif %}"
name="acceptedDataProtection"
required="required"
value="1"
id="acceptedDataProtection"
oninvalid="this.setCustomValidity('Bitte klicken Sie dieses Kästchen an, um fortfahren zu können.')" oninput="this.setCustomValidity('')"
{% if data.get('acceptedDataProtection') %}checked="checked"{% endif %}>
{% endblock %}
{% block component_privacy_dpi_label %}
<label class="custom-control-label no-validation"
for="acceptedDataProtection">
{# @deprecated tag:v6.5.0 - Translation parameter %url% will be removed, use %privacyUrl% and %tosUrl% instead #}
{{ "general.privacyNotice"|trans({
'%url%': path('frontend.cms.page',{ id: config('core.basicInformation.privacyPage') }),
'%privacyUrl%': path('frontend.cms.page',{ id: config('core.basicInformation.privacyPage') }),
'%tosUrl%': path('frontend.cms.page',{ id: config('core.basicInformation.tosPage') })
})|raw }}
</label>
{% endblock %}
</div>
{% else %}
<div class="data-protection-information">
{% block component_privacy_label %}
<label>
{# @deprecated tag:v6.5.0 - Translation parameter %url% will be removed, use %privacyUrl% and %tosUrl% instead #}
{{ "general.privacyNotice"|trans({
'%url%': path('frontend.cms.page',{ id: config('core.basicInformation.privacyPage') }),
'%privacyUrl%': path('frontend.cms.page',{ id: config('core.basicInformation.privacyPage') }),
'%tosUrl%': path('frontend.cms.page',{ id: config('core.basicInformation.tosPage') })
})|raw }}
</label>
{% endblock %}
</div>
{% endif %}
{% endblock %}
</div>
<div class="form-text privacy-notice">
<strong>Gewerbliche Bestellung*</strong></br>
<div class="{{ formCheckboxWrapperClass }} data-protection-information">
<input type="checkbox"
class="{{ formCheckInputClass }} {% if formViolations.getViolations('/acceptedbusiness') is not empty %} is-invalid{% endif %}"
name="acceptedbusiness"
required="required"
value="1"
id="acceptedbusiness"
oninvalid="this.setCustomValidity('Bitte klicken Sie dieses Kästchen an, um fortfahren zu können.')" oninput="this.setCustomValidity('')"
{% if data.get('acceptedbusiness') %}checked="checked"{% endif %}>
<label class="custom-control-label no-validation"
for="acceptedbusiness">
Unser Angebot richtet sich ausschließlich an gewerbliche Kunden. Hiermit bestätige ich, dass es sich um eine gewerbliche Bestellung handelt.
Hinweis: Weitere Informationen finden Sie in unseren <a href="/shop/FAQ-zur-Nutzung-der-Lizenzen/#faq_group_481761377d8642cbb3548daa960c2686">FAQ</a>.
</label>
</div>
</div>
{% endblock %}