16 lines
489 B
Plaintext
16 lines
489 B
Plaintext
- content_for(:title) { t :resend_instructions_header }
|
|
|
|
h2.entry-title = t :resend_instructions_header
|
|
|
|
= simple_form_for(resource, wrapper: :default, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
|
|
= f.error_notification
|
|
= f.full_error :confirmation_token
|
|
|
|
.form-inputs
|
|
= f.input :email, required: true, autofocus: true, hint: false
|
|
|
|
.form-actions
|
|
= f.button :submit, t(:resend_instructions_btn)
|
|
|
|
== render 'devise/shared/links'
|