summaryrefslogtreecommitdiff
path: root/app/views/application/_flash_messages.html.erb
blob: 7db176225d8adca0685a083e682a6806a03ccd35 (plain)
1
2
3
4
5
6
7
8
9
<% if flash[:error] %>
  <div class="block rounded my-2 p-2 bg-red-200 text-red-800">
    <%= flash[:error] %>
  </div>
<% elsif flash[:success] %>
  <div class="block rounded my-2 p-2 bg-green-200 text-green-800">
    <%= flash[:success] %>
  </div>
<% end %>