templates/_partials/_flash.html.twig line 1

Open in your IDE?
  1. {% for label, messages in app.flashes %}
  2.     {% for message in messages %}
  3.         <div class="position-fixed end-0 p-3" style="z-index: 11">
  4.             <div id="liveToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
  5.                 <div class="toast-header text-white bg-{{ label }}">
  6.                     <strong class="me-auto">Notification</strong>
  7.                     <small>Maintenant</small>
  8.                     <button type="button" class="ml-2 mb-1 close" data-bs-dismiss="toast" aria-label="Close">
  9.                         <span aria-hidden="true">&times;</span>
  10.                     </button>
  11.                 </div>
  12.                 <div class="toast-body">
  13.                     {{ message }}
  14.                 </div>
  15.             </div>
  16.         </div>
  17.     {% endfor %}
  18. {% endfor %}
  19. <script>
  20.     let affichage = document.getElementById('liveToast')
  21.     if (affichage) {
  22.         affichage.classList.add('show');
  23.     }
  24. </script>