mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
22 lines
742 B
Text
22 lines
742 B
Text
- content_for :page_title do
|
|
= t('auth.captcha_confirmation.title')
|
|
|
|
= form_with url: auth_captcha_confirmation_url, class: :simple_form do |form|
|
|
= render 'auth/shared/progress', stage: 'confirm'
|
|
|
|
= form.hidden_field :confirmation_token,
|
|
value: params[:confirmation_token]
|
|
= form.hidden_field :redirect_to_app,
|
|
value: params[:redirect_to_app]
|
|
|
|
%h1.title= t('auth.captcha_confirmation.title')
|
|
%p.lead= t('auth.captcha_confirmation.hint_html')
|
|
|
|
= render_captcha
|
|
|
|
%p.lead= t('auth.captcha_confirmation.help_html', email: mail_to(Setting.site_contact_email, nil))
|
|
|
|
.actions
|
|
= form.button t('challenge.confirm'),
|
|
class: 'button',
|
|
type: :submit
|