diff --git a/app/views/layouts/_flash.html.erb b/app/views/layouts/_flash.html.erb
index d62a65c..2b8d611 100644
--- a/app/views/layouts/_flash.html.erb
+++ b/app/views/layouts/_flash.html.erb
@@ -1,16 +1,14 @@
<% if flash[:alert] || flash[:notice] %>
-
- <% if flash[:alert] %>
-
- <%= flash[:alert] %><% flash.delete(:alert) %>
-
- <% end %>
+ <% if flash[:alert] %>
+
+ <%= flash[:alert] %><% flash.delete(:alert) %>
+
+ <% end %>
- <% if flash[:notice] %>
-
- <%= flash[:notice] %>
- <% flash.delete(:notice) %>
-
- <% end %>
-
+ <% if flash[:notice] %>
+
+ <%= flash[:notice] %>
+ <% flash.delete(:notice) %>
+
+ <% end %>
<% end %>