<!DOCTYPE html>
<html>
<style>
#header{background: black !important;}
</style>
<style>
label{color:black}
</style>
{{ include('/includes/head.html.twig') }}
<body>
{{ include('/includes/header.html.twig') }}
<div class="section-event-infos inverted-section" id="section-event-infos" style="min-height:700px">
<div class="container-fluid" style="margin-top:10%">
<div>
</div>
{% if app.request.hasSession and app.request.hasPreviousSession %}
{% for type, messages in app.session.flashbag.all() %}
{% for message in messages %}
<div class="flash-{{ type }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
{% endif %}
<div>
{% block fos_user_content %}
{% endblock fos_user_content %}
</div>
</div></div>
{{ include('/includes/footer.html.twig') }}
</body>
</html>