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

16 lines
454 B
Plaintext
Raw Normal View History

2015-08-15 04:33:02 +03:00
- content_for(:title) { ":: #{t :resend_instructions_header}" }
h2.entry-title = t :resend_instructions_header
= simple_form_for(resource, wrapper: :default, as: :user, url: user_confirmation_path) 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'