10 lines
428 B
Plaintext
10 lines
428 B
Plaintext
h2= t('devise.confirmations.title')
|
|
|
|
= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), html: { method: :post, class: 'form-horizontal' }) do |f|
|
|
= devise_error_messages!
|
|
= f.row :email do
|
|
.form-label= f.label :email, class: 'control-label'
|
|
.form-field= f.email_field :email
|
|
.form-row.form-actions= f.submit t('devise.confirmations.submit_text'), class: 'button'
|
|
= render "links"
|