vendor/friendsofsymfony/user-bundle/Resources/views/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <style>
  4. #header{background: black !important;}
  5. </style>
  6. <style>
  7. label{color:black}
  8. </style>
  9.   {{ include('/includes/head.html.twig') }} 
  10.     <body>
  11.       {{ include('/includes/header.html.twig') }} 
  12.       <div class="section-event-infos inverted-section" id="section-event-infos" style="min-height:700px">
  13.             <div class="container-fluid" style="margin-top:10%">
  14.         <div>
  15.           
  16.         </div>
  17.         {% if app.request.hasSession and app.request.hasPreviousSession %}
  18.             {% for type, messages in app.session.flashbag.all() %}
  19.                 {% for message in messages %}
  20.                     <div class="flash-{{ type }}">
  21.                         {{ message }}
  22.                     </div>
  23.                 {% endfor %}
  24.             {% endfor %}
  25.         {% endif %}
  26.         <div>
  27.             {% block fos_user_content %}
  28.             {% endblock fos_user_content %}
  29.         </div>
  30.         </div></div>
  31.          {{ include('/includes/footer.html.twig') }} 
  32.     </body>
  33. </html>