custom/plugins/TdsOrlob/src/Resources/views/storefront/component/privacy-notice.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/privacy-notice.html.twig' %}
  2. {% block component_privacy_notice %}
  3.     <p class="mb-2">{{ "general.privacyTitle"|trans|sw_sanitize }}*</p>
  4.     <div class="form-text privacy-notice custom-control custom-checkbox mb-4">
  5.         {% block component_privacy_label %}
  6.             <input name="privacy"
  7.                    type="checkbox"
  8.                    class="custom-control-input"
  9.                    id="form-privacy-opt-in-custom"
  10.                    required>
  11.             <label for="form-privacy-opt-in-custom" class=" custom-control-label">
  12.                 {{ "general.privacyNotice"|trans({
  13.                     '%url%': path('frontend.cms.page',{ id: shopware.config.core.basicInformation.privacyPage })
  14.                 })|raw }}
  15.             </label>
  16.         {% endblock %}
  17.     </div>
  18. {% endblock %}