templates/_parts/common/policy-checkbox.html.twig line 1

Open in your IDE?
  1. {% set class = class|default('') %}
  2. {% set id = id|default('requestcall') %}
  3. <div class="policy-checkbox {{ class }}">
  4.     <div class="policy-checkbox__inner">
  5.         <input type="checkbox" id="{{ id }}-agreement"
  6.                required
  7.                value="152"
  8.                style="opacity: 0;">
  9.         <label for="{{ id }}-agreement"
  10.                class="small-label">
  11.             Принимаю условия
  12.             <a href="{{ vich_uploader_asset(settings(), 'policyFile') }}"
  13.                target="_blank"
  14.                rel="nofollow noopener noreferrer"
  15.                class="policy-checkbox__policy-link"
  16.             >
  17.                 политики конфидециальности
  18.             </a>
  19.         </label>
  20.     </div>
  21. </div>