2016-10-13 23:03:12 +00:00
|
|
|
- content_for :page_title do
|
2016-11-15 22:02:57 +00:00
|
|
|
= t('auth.resend_confirmation')
|
2016-10-13 23:03:12 +00:00
|
|
|
|
2023-10-25 21:33:44 +00:00
|
|
|
- if resource.errors.of_kind?(:email, :already_confirmed)
|
|
|
|
.simple_form
|
|
|
|
= render 'auth/shared/progress', stage: resource.approved? ? 'completed' : 'confirmed'
|
2016-10-18 14:37:15 +00:00
|
|
|
|
2023-10-25 21:33:44 +00:00
|
|
|
- if resource.approved?
|
|
|
|
%h1.title= t('auth.confirmations.welcome_title', name: resource.account.username)
|
|
|
|
%p.lead= t('auth.confirmations.registration_complete', domain: site_hostname)
|
|
|
|
- if resource.created_by_application && redirect_to_app?
|
|
|
|
- app = resource.created_by_application
|
|
|
|
%p.lead= t('auth.confirmations.redirect_to_app_html', app_name: app.name, clicking_this_link: link_to(t('auth.confirmations.clicking_this_link'), app.confirmation_redirect_uri))
|
|
|
|
- else
|
|
|
|
%p.lead= t('auth.confirmations.proceed_to_login_html', login_link: link_to_login(t('auth.confirmations.login_link')))
|
|
|
|
- else
|
|
|
|
%h1.title= t('auth.confirmations.awaiting_review_title')
|
|
|
|
%p.lead= t('auth.confirmations.awaiting_review', domain: site_hostname)
|
|
|
|
- else
|
|
|
|
= simple_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
|
|
|
|
= render 'shared/error_messages', object: resource
|
2016-10-03 14:38:22 +00:00
|
|
|
|
2023-10-25 21:33:44 +00:00
|
|
|
.fields-group
|
2024-01-09 16:03:16 +00:00
|
|
|
= f.input :email,
|
|
|
|
autofocus: true,
|
|
|
|
hint: current_user.present? && t('auth.confirmations.wrong_email_hint'),
|
|
|
|
input_html: { 'aria-label': t('simple_form.labels.defaults.email') },
|
|
|
|
label: t('simple_form.labels.defaults.email'),
|
|
|
|
readonly: current_user.present?,
|
|
|
|
wrapper: :with_label
|
2023-10-25 21:33:44 +00:00
|
|
|
|
|
|
|
.actions
|
|
|
|
= f.button :button, t('auth.resend_confirmation'), type: :submit
|
2016-10-03 14:38:22 +00:00
|
|
|
|
2017-05-08 01:35:25 +00:00
|
|
|
.form-footer= render 'auth/shared/links'
|