blob: 2677feea09dce71b9136e0027fbdbdacc0f539b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
= devise_error_messages!
.field
= f.email_field :email, autofocus: true, required: true, placeholder: 'E-mail address'
.actions
= f.button "Reset password", type: 'submit'
.form-footer= render "auth/shared/links"
|