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