templates/flashes.html.twig line 1

Open in your IDE?
  1. {% set allFlashes = app.session.flashbag.all %}
  2. {% if allFlashes %}
  3. <style type="text/css">
  4. div#banner { margin-top: 125px; }
  5. @media (max-width: 991px) {
  6. div#banner {margin-top: 109px !important;}
  7. }
  8. .Flash-wrapper .error {
  9. background-color: #f2dede;
  10. border-color: #ebccd1;
  11. color: #a94442; }
  12. .Flash-wrapper .success {
  13. color: #155724;
  14. background-color: #d4edda;
  15. border-color: #c3e6cb; }
  16. </style>
  17. <div class="Flash-wrapper">
  18. {% for label, flashes in allFlashes %}
  19. {% for flash in flashes %}
  20. <div class="Flash alert alert-{{ label }} {{ label }}">
  21. <div class="container">{{ flash }}</div>
  22. </div>
  23. {% endfor %}
  24. {% endfor %}
  25. </div>
  26. {% endif %}