4317b1635f76e8266f7bc205563d54090031c50f
[yaffs-website] / web / modules / contrib / eu_cookie_compliance / templates / eu_cookie_compliance_popup_info.html.twig
1 {#
2 /**
3  * @file
4  * This is a template file for a banner prompting user to give their consent for
5  * the website to set cookies.
6  *
7  * When overriding this template it is important to note that jQuery will use
8  * the following classes to assign actions to buttons:
9  *
10  * agree-button      - agree to setting cookies
11  * find-more-button  - link to an information page
12  *
13  * Variables available:
14  * - message:  Contains the text that will be display whithin the banner
15  * - agree_button: Label for the agree button
16  * - disagree_button: Label for the disagree button
17  */
18 #}
19
20 <div class="eu-cookie-compliance-banner eu-cookie-compliance-banner-info">
21   <div class ="popup-content info eu-cookie-compliance-content">
22     <div id="popup-text" class="eu-cookie-compliance-message">
23       {{ message }}
24     </div>
25     <div id="popup-buttons" class="eu-cookie-compliance-buttons">
26       <button type="button" class="agree-button eu-cookie-compliance-agree-button">{{ agree_button }}</button>
27       {% if disagree_button %}
28         <button type="button" class="find-more-button eu-cookie-compliance-more-button">{{ disagree_button }}</button>
29       {% endif %}
30     </div>
31   </div>
32 </div>