templates/partials/gdpr/gdpr.html.twig line 1

Open in your IDE?
  1. <div class="gdpr-module" id="gdpr-module">
  2.     <div>
  3.         <div class="gdpr-module-dialog">
  4.             <div class="gdpr-module-content">
  5.                 <div class="gdpr-module-title" id="gdpr-title">
  6.                     <span>
  7.                         {{ 'gdpr_banner.title' | trans }}
  8.                     </span>
  9.                 </div>
  10.                 <div id="gdpr-content">
  11.                     {{ 'gdpr_banner.content' | trans | raw }}
  12.                 </div>
  13.                 <div class="gdpr-module-actions">
  14.                     <button class="config-button" id="config-btn">
  15.                         {{ 'gdpr_banner.btn.config'|trans }}
  16.                     </button>
  17.                     <button class="refuse-btn" id="refuse-gdpr">
  18.                         {{ 'gdpr_banner.btn.refuse'|trans }}
  19.                     </button>
  20.                     <button class="accept-btn" id="accept-btn">
  21.                         {{ 'gdpr_banner.btn.accept'|trans }}
  22.                     </button>
  23.                 </div>
  24.                 <div class="trackers-choices" id="gdpr-config">
  25.                     <div>
  26.                         <div class="choices" id="gdpr-trackers">
  27.                             {# Trackers checkboxes will be autofilled here #}
  28.                         </div>
  29.                         <div class="validate">
  30.                             <button class="accept-btn" id="valid-config-gdpr">
  31.                                 {{ 'gdpr_banner.btn.valid'|trans }}
  32.                             </button>
  33.                         </div>
  34.                     </div>
  35.                 </div>
  36.             </div>
  37.         </div>
  38.     </div>
  39. </div>
  40. {% include 'partials/gdpr/tracker-checkbox-template.html.twig' %}