<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA5-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Collectiv'Finance pour la Banque des Territoires" />
<meta name="author" content="INFONAUTE - DPF" />
<title>{% block title %}Création de compte{% endblock %}</title>
<link rel="icon" type="image/x-icon" href="/img/favicon-bdt.png" />
{% block stylesheets %}{{ encore_entry_link_tags('app') }}{% endblock %}
{# complément css si besoin
?link rel="stylesheet" href="/css/plugins/footable/footable.core.css"
#}
</head>
<body class="white-bg bezBody">
{% block javascripts %}{{ encore_entry_script_tags('app') }}{% endblock %}
<script src="/js/main.js"></script>
<div class="row">
<div class="col-md-3 text-center">
<a href="https://www.banquedesterritoires.fr/collectivites-epl" target="_blank">
<img src="/img/logo-bdt.svg" title="La Banque des Territoires" height="67" width="300" />
</a>
</div>
<div class="col-md-6 text-left">
<a href="{{ path('pageaccueil') }}" title="Retour à la page de connexion" style="text-decoration: none;">
<img src="/img/logo_cf.png" title="Collectiv'Finance" height="50" width="300" />
</a>
</div>
<div class="col-md-3 text-center">
<a href="{{ path('identification') }}" title="vous identifier" style="text-decoration: none;">
<button class="btn btn-primary">Connexion</button>
</a>
</div>
</div>
<div class="bezBody">
{% block body %}{% endblock %}
</div>
<div style="padding-top:20px;">
{{ include('default/footer.html.twig') }}
</div>
{# tout session getFlashBag => toast #}
<div id="untoast"></div>
<script> {# niveau global #}
$(document).ready(function(){
{% if app.request.hasPreviousSession %}
{% for type, messages in app.session.flashbag.all() %}
{% set pos = 0 %}
{% for message in messages %}
showNotification('{{pos}}', '{{ type }}', 'Notification', '{{ message }}');
{% set pos = pos + 110 %}
{% endfor %}
{% endfor %}
{% endif %}
$(document).ajaxError(function (event, jqXHR) {
if (403 === jqXHR.status) {
window.location.reload();
}
});
$('[data-bs-toggle="tooltip"]').tooltip();
});
</script>
</body>
</html>