21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-16 14:34:29 +02:00
chexpire/app/views/shared/_notices.html.erb

14 lines
395 B
Plaintext
Raw Normal View History

<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-10">
<% if notice.present? %>
<div class="alert alert-success alert-layout" role="alert"><%= notice %></div>
<% end %>
2018-05-23 15:46:10 +02:00
<% if alert.present? %>
<div class="alert alert-danger alert-layout" role="alert"><%= alert %></div>
<% end %>
</div>
</div>
</div>