2016-10-14 08:03:12 +09:00
|
|
|
- content_for :page_title do
|
|
|
|
Reset password
|
|
|
|
|
2016-10-18 23:37:15 +09:00
|
|
|
= simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
|
|
|
|
= render 'shared/error_messages', object: resource
|
|
|
|
|
2016-11-04 03:19:39 +09:00
|
|
|
= f.input :email, autofocus: true, required: true, placeholder: 'E-mail address', input_html: { 'aria-label' => 'E-mail address' }
|
2016-03-06 06:43:05 +09:00
|
|
|
|
|
|
|
.actions
|
2016-10-18 23:37:15 +09:00
|
|
|
= f.button :button, "Reset password", type: :submit
|
2016-03-06 06:43:05 +09:00
|
|
|
|
|
|
|
.form-footer= render "auth/shared/links"
|