26f21fd5a0
* Cas authentication feature * Config * Remove class_eval + Omniauth initializer * Codeclimate review * Codeclimate review 2 * Codeclimate review 3 * Remove uid/email reconciliation * SAML authentication * Clean up code * Improve login form * Fix code style issues * Add locales
15 lines
398 B
Plaintext
15 lines
398 B
Plaintext
- content_for :page_title do
|
|
= t('auth.confirm_email')
|
|
|
|
= simple_form_for(current_user, as: 'user', url: finish_signup_path, html: { role: 'form'}) do |f|
|
|
- if @show_errors && current_user.errors.any?
|
|
#error_explanation
|
|
- current_user.errors.full_messages.each do |msg|
|
|
= msg
|
|
%br
|
|
|
|
= f.input :email
|
|
|
|
.actions
|
|
= f.submit t('auth.confirm_email'), class: 'button'
|