Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « confirmations « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00652e8574a25a7f59287ce7db683d7dd45f6713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
= render 'devise/shared/tab_single', tab_title: 'Resend confirmation instructions'
.login-box.gl-p-5
  .login-body
    = gitlab_ui_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post, class: 'gl-show-field-errors' }) do |f|
      .devise-errors
        = render "devise/shared/error_messages", resource: resource
      .form-group
        = f.label :email
        = f.email_field :email, class: "form-control gl-form-input", required: true, autocomplete: 'off', title: _('Please provide a valid email address.'), value: nil
        .form-text.gl-text-secondary
          = _('Requires your primary GitLab email address.')

      %div
      - if recaptcha_enabled?
        = recaptcha_tags nonce: content_security_policy_nonce

      .gl-mt-5
        = render Pajamas::ButtonComponent.new(type: :submit, variant: :confirm, block: true) do
          = _("Resend")

.clearfix.prepend-top-20
  = render 'devise/shared/sign_in_link'