debian-mirror-gitlab/app/views/devise/confirmations/new.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
975 B
Text
Raw Normal View History

2016-11-03 12:29:30 +05:30
= render 'devise/shared/tab_single', tab_title: 'Resend confirmation instructions'
2022-07-23 23:45:48 +05:30
.login-box.gl-p-5
2015-04-26 12:48:37 +05:30
.login-body
2023-05-27 22:25:52 +05:30
= gitlab_ui_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post, class: 'gl-show-field-errors' }) do |f|
2014-09-02 18:07:02 +05:30
.devise-errors
2019-09-04 21:01:54 +05:30
= render "devise/shared/error_messages", resource: resource
2016-11-03 12:29:30 +05:30
.form-group
= f.label :email
2022-02-05 19:09:49 +05:30
= f.email_field :email, class: "form-control gl-form-input", required: true, autocomplete: 'off', title: _('Please provide a valid email address.'), value: nil
2023-06-20 00:43:36 +05:30
.form-text.gl-text-secondary
= _('Requires your primary GitLab email address.')
2021-12-11 22:18:48 +05:30
%div
- if recaptcha_enabled?
= recaptcha_tags nonce: content_security_policy_nonce
.gl-mt-5
2023-05-27 22:25:52 +05:30
= render Pajamas::ButtonComponent.new(block: true, type: :submit, variant: :confirm) do
= _("Resend")
2015-04-26 12:48:37 +05:30
.clearfix.prepend-top-20
= render 'devise/shared/sign_in_link'