templates/website/partials/message.html.twig line 1
<div id="messageToast" class="toast-container position-fixed mt-1 p-1" style="top: 6px;right: 12px;z-index: 999999999999;">{% for label, messages in app.flashes(['success', 'warning', 'danger', 'info']) %}{% for message in messages %}<div class="toast showing message-toast" role="alert" aria-live="assertive" aria-atomic="true"><div class="toast-header bg-{{ label }} text-white"><strong class="me-auto">{{ label }}</strong><button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button></div><div class="toast-body">{{ message }}</div></div>{% endfor %}{% endfor %}</div>