23 lines
968 B
Plaintext
23 lines
968 B
Plaintext
<!-- Wrapping element flash message-->
|
|
<div class="position-relative" style="z-index: 9999;">
|
|
<!-- Position toasts -->
|
|
<div class="position-absolute" style="top: 0.5rem; right: 0.5rem;">
|
|
<% if flash.alert.present? %>
|
|
<div class="toast fade show bg-black text-white toast-min-w-border-radius" data-autohide="false">
|
|
<div class="toast-body toast-border-left-danger">
|
|
<button type="button" class="close text-white ml-2" data-dismiss="toast">×</button>
|
|
<p><%= flash.alert.html_safe %></p>
|
|
</div>
|
|
</div>
|
|
<% elsif flash.notice.present? %>
|
|
<div class="toast fade show bg-black text-white toast-min-w-border-radius" data-autohide="false">
|
|
<div class="toast-body toast-border-left-primary">
|
|
<button type="button" class="close text-white ml-2" data-dismiss="toast">×</button>
|
|
<p><%= flash.notice.html_safe %></p>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|