<%= form_for(resource, as: resource_name, url: session_path(resource_name), html: { role: "form" }) do |f| %>
<%= f.email_field :email, autofocus: true, class: "uk-width-1-1 uk-form-large uk-form-width-large", placeholder: t('activerecord.attributes.user.email', :default => 'email') %>
<%= f.password_field :password, autocomplete: "off", class: "uk-width-1-1 uk-form-large uk-form-width-large", placeholder: t('activerecord.attributes.user.password', :default => 'Password') %>
<% if devise_mapping.rememberable? %> <% end %>
<%= f.button t('.sign_in', default: "Sign in"), class: "uk-width-1-1 uk-button uk-button-primary uk-button-large" %>
<%= render "devise/shared/links" %> <% end %>