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

new.html.haml « unlocks « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bae27020c295ac2be0223b4ae841c4bd544718a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
= render 'devise/shared/tab_single', tab_title: _('Resend unlock instructions')
.login-box
  .login-body
    = gitlab_ui_form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post, class: 'gl-p-5 gl-show-field-errors' }) do |f|
      .devise-errors
        = render "devise/shared/error_messages", resource: resource
      .form-group
        = f.label :email, _('Email')
        = f.email_field :email, class: 'form-control gl-form-input', autofocus: 'autofocus', autocapitalize: 'off', autocorrect: 'off', title: _('Please provide a valid email address.')

      = render Pajamas::ButtonComponent.new(type: :submit, variant: :confirm, block: true) do
        = _('Resend unlock instructions')

- if Feature.enabled?(:restyle_login_page, @project)
  = render 'devise/shared/sign_in_link'
- else
  .gl-mt-3
    = render 'devise/shared/sign_in_link'