Reset My Password

<%= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %>
<%= f.label :email, class: "label" %>

<%= f.input_field :email, required: true, autofocus: true, autocomplete: "email", class: "input" %>

<%= f.full_error :email, class: "help is-danger" %>

<%= f.button :submit, "Reset password", class: "button is-primary is-fullwidth is-rounded" %>

<% end %> <%= render "devise/shared/links" %>