mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 15:24:48 +00:00
8 lines
241 B
Plaintext
8 lines
241 B
Plaintext
<% flash.each do |type, msg| %>
|
|
<div class="p-4 bg-<%= type == 'notice' ? 'blue' : 'red' %>-200 rounded-lg"><%= msg %></div>
|
|
<% end %>
|
|
|
|
<% errors.each do |message| %>
|
|
<div class="p-4 bg-red-200 rounded-lg"><%= message %></div>
|
|
<% end %>
|