<!DOCTYPE html>
<html lang="fr">
<head>
{% if not app.request.cookies.get('politicly-production-access') and app.request.get('_route') != 'coming_soon' %}
<script>
window.location.replace("/coming-soon");
</script>
{% endif %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, shrink-to-fit=no">
<link rel="icon" type="image/x-icon" href="/images/content/favicon.png">
<meta name="robots" content="noindex">
<title>
{% block title %}{% endblock %}
- Politicly</title>
{#
<link rel="stylesheet" href="/icons-prinipales/style.css">
<link rel="stylesheet" href="/icons-prinipales-2/style.css">
#}
<link rel="stylesheet" href="/custom-icons/style.css">
<link rel="stylesheet" href="/icons-comparateur/style.css">
<link rel="stylesheet" href="/icons-humeurs/style.css">
<link rel="stylesheet" href="/icons-actions/style.css">
{{ encore_entry_link_tags('app') }}
<link rel="stylesheet" href="/nice-select/css/nice-select.css"> {% block stylesheets %}{% endblock %}
</head>
<body {% if menu is defined and menu == 'welcome' %} class="welcome" {% endif %}>
{% include "front/_partials/header.html.twig" %}
{% block body %}{% endblock %}
{% include "front/_partials/footer.html.twig" %}
{% include "front/_partials/notyf.html.twig" %}
<div class="modal fade" id="loginError" tabindex="-1" role="dialog" aria-labelledby="loginError" aria-hidden="true" data-backdrop="static" data-keyboard="false">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Erreur de connexion</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<i class="custom-icon fermeture"></i>
</button>
</div>
<div class="modal-body pt-0">
<p class="text-center" id="message-login-fail">
Impossible de se connecter, l'email ou le mot de passe que vous avez fourni est incorrecte.
</p>
<p id="contact" class="d-flex justify-content-center mt-3"></p>
</div>
</div>
</div>
</div>
{{ encore_entry_script_tags('app') }}
{% block javascripts %}{% endblock %}
<script src="/nice-select/js/jquery.nice-select.min.js"></script>
<script>
$(".select-custom").niceSelect();
</script>
</body>
</html>