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

16 lines
489 B
Plaintext
Raw Permalink Normal View History

2015-08-20 00:50:35 +03:00
- content_for(:title) { t :resend_instructions_header }
2015-08-15 04:33:02 +03:00
h2.entry-title = t :resend_instructions_header
2015-08-15 05:59:46 +03:00
= simple_form_for(resource, wrapper: :default, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
2015-08-15 04:33:02 +03:00
= 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'