clarion/lib/initfest/views/devise/passwords/new.slim

15 lines
420 B
Plaintext
Raw Normal View History

2015-08-15 05:59:46 +03:00
- content_for(:title) { "#{t :lostpass}" }
2015-08-15 04:33:02 +03:00
h2.entry-title = t :lostpass
2015-08-15 05:59:46 +03:00
= simple_form_for(resource, wrapper: :default, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
2015-08-15 04:33:02 +03:00
= f.error_notification
.form-inputs
= f.input :email, required: true, autofocus: true, hint: false
.form-actions
= f.button :submit, t(:send_lostpass_instructions)
== render 'devise/shared/links'