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: b2f48a4e0bf252cec61cb132c0a2055d1094595d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
= render 'devise/shared/tab_single', tab_title: 'Resend unlock instructions'
.login-box
  .login-body
    = form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post, class: 'gl-show-field-errors' }) do |f|
      .devise-errors
        = devise_error_messages!
      .form-group.append-bottom-20
        = f.label :email
        = f.email_field :email, class: 'form-control', autofocus: 'autofocus', autocapitalize: 'off', autocorrect: 'off', title: 'Please provide a valid email address.'
      .clearfix
        = f.submit 'Resend unlock instructions', class: 'btn btn-success'

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