{% if
app.environment != 'test'
and not app.request.cookies.has(gdprCookieName) %}
<div id="gdpr-container">
<div id="gdpr-cover"></div>
<div id="gdpr-popup">
<strong>{% trans %}This website uses cookies to manage user logging information. It does not sell, nor distribute, any personal data to third parties.{% endtrans %}</strong>
<form id="cookies-form" action="{{ path('gdpr') }}" method="post">
<input id="gdpr-checkbox" type="checkbox" required> <label for="gdpr-checkbox">{% trans %}I accept the use of cookies.{% endtrans %}</label>
<button class="btn btn-primary">{% trans %}OK{% endtrans %}</button>
</form>
</div>
</div>
{% endif %}