2   <div class="alert alert-danger row mx-0 mb-0 p-3 rounded-0 align-items-center">
 
   5         <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml" />
 
   6         <%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
 
   9     <div class="col"><%= render_flash(flash[:error]) %></div>
 
  13 <% if flash[:warning] %>
 
  14   <div class="alert alert-warning row mx-0 mb-0 p-3 rounded-0 align-items-center">
 
  15     <div class="col-auto">
 
  17         <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
 
  18         <%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
 
  21     <div class="col"><%= render_flash(flash[:warning]) %></div>
 
  25 <% if flash[:notice] %>
 
  26   <div class="alert alert-success row mx-0 mb-0 p-3 rounded-0 align-items-center">
 
  27     <div class="col-auto">
 
  29         <source srcset="<%= image_path "notice.svg" %>" type="image/svg+xml"></source>
 
  30         <%= image_tag("notice.png", :srcset => image_path("notice.svg")) %>
 
  33     <div class="col"><%= render_flash(flash[:notice]) %></div>