Oops!
<%- flash.each do |name, msg| -%>
<%= content_tag :p,
msg.humanize,
id: "flash_#{name}" if msg.is_a?(String) %>
<%- end -%>
<% end %>
<%= f.label :email, class: "block text-gray-700 text-sm font-bold mb-2" %>
<%= f.email_field :email, autofocus: true, autocomplete: "email",
class: "shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight foucs:outline-none focus:shadow-outline"
%>
<%= f.label :password, class: "block text-gray-700 text-sm font-bold mb-2" %>
<%= f.password_field :password,
autocomplete: "current-password",
class: "shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
%>
<% if devise_mapping.rememberable? %>
<%= f.check_box :remember_me, class: "mr-2 leading-tight" %>
<%= f.label :remember_me,
class: "align-baseline inline-block text-gray-700 text-sm"
%>
<% end %>
<%= f.submit "Log in",
class: "button bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline w-full"
%>
<%= render "devise/shared/links" %>
<% end %>
<%= render "devise/shared/form_footer" %>