clarion/app/views/devise/unlocks/new.html.slim

14 lines
394 B
Plaintext
Raw Normal View History

2014-08-31 22:11:46 +03:00
h2 =t :resend_unlock_instructions_title
2014-08-31 12:37:17 +03:00
= simple_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
= f.error_notification
= f.full_error :unlock_token
.form-inputs
= f.input :email, required: true, autofocus: true, hint: false
.form-actions
2014-08-31 22:11:46 +03:00
= f.button :submit, t(:resend_instructions_btn)
2014-08-31 12:37:17 +03:00
== render 'devise/shared/links'