<%= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post, class: "forgotten-form" }) do |f| %>
<%= devise_error_messages! %>
<%= f.text_field :email, required: true, autofocus: true, class: "email", placeholder: "Email Address" %>
<%= f.submit "Send password reset instructions", class: "button-save" %>
<%= link_to "Sign In", new_session_path(resource_name) %>
<%= link_to "Sign Up", new_registration_path(resource_name) %>
<% end %>