templates/_flashes.html.twig line 1

Open in your IDE?
  1. {% for notification in app.flashes('success') %}
  2.     <div class="notification alert alert-success my-3" id="notification">
  3.         <span class="notifMessage">{{ notification|raw }}</span>
  4.         <div class="progress-bar" id="progressBar"></div>
  5.         <span class="close-btn" onclick="closeNotification()">&times;</span>
  6.     </div>
  7. {% endfor %}
  8. {% for notification in app.flashes('error') %}
  9.     <div class="notification alert alert-danger my-3" id="notification">
  10.         <span class="notifMessage">{{ notification|raw }}</span>
  11.         <div class="progress-bar" id="progressBar"></div>
  12.         <span class="close-btn" onclick="closeNotification()">&times;</span>
  13.     </div>
  14. {% endfor %}