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

15 lines
726 B
Text
Raw Normal View History

2021-04-29 21:17:54 +05:30
= render 'devise/shared/tab_single', tab_title: _('Resend unlock instructions')
2015-12-23 02:04:40 +05:30
.login-box
.login-body
2017-08-17 22:00:37 +05:30
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post, class: 'gl-show-field-errors' }) do |f|
2015-12-23 02:04:40 +05:30
.devise-errors
2019-09-04 21:01:54 +05:30
= render "devise/shared/error_messages", resource: resource
2021-02-22 17:27:13 +05:30
.form-group.gl-mb-6
2016-11-03 12:29:30 +05:30
= f.label :email
2021-04-29 21:17:54 +05:30
= f.email_field :email, class: 'form-control', autofocus: 'autofocus', autocapitalize: 'off', autocorrect: 'off', title: _('Please provide a valid email address.')
2015-12-23 02:04:40 +05:30
.clearfix
2021-04-29 21:17:54 +05:30
= f.submit _('Resend unlock instructions'), class: 'gl-button btn btn-confirm'
2015-12-23 02:04:40 +05:30
.clearfix.prepend-top-20
= render 'devise/shared/sign_in_link'