custom/plugins/SalvanaPferde2022/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="form-text privacy-notice custom-checkbox custom-control">
  4.     {% block component_privacy_label %}
  5.       <input type="checkbox" class="custom-control-input" name="sits_datenschutz" required="required" id="sits_datenschutz" />
  6.       <label class="custom-control-label" for="sits_datenschutz">
  7.           <strong>{{ "general.privacyTitle"|trans|sw_sanitize }}</strong><br />
  8.           {{ "general.privacyNotice"|trans({
  9.               '%url%': path('frontend.cms.page',{ id: shopware.config.core.basicInformation.privacyPage }),
  10.               '%privacyUrl%': path('frontend.cms.page', { id: config('core.basicInformation.privacyPage') }),
  11.               '%tosUrl%': path('frontend.cms.page', { id: config('core.basicInformation.tosPage')} )
  12.           })|raw }}
  13.       </label>
  14.     {% endblock %}
  15.   </p>
  16. {% endblock %}