2016-11-03 12:29:30 +05:30
|
|
|
= render 'devise/shared/tab_single', tab_title: 'Resend confirmation instructions'
|
2015-04-26 12:48:37 +05:30
|
|
|
.login-box
|
|
|
|
.login-body
|
2017-08-17 22:00:37 +05:30
|
|
|
= 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
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.email_field :email, class: "form-control gl-form-input", required: true, title: _('Please provide a valid email address.'), value: nil
|
2021-12-11 22:18:48 +05:30
|
|
|
|
|
|
|
%div
|
|
|
|
- if recaptcha_enabled?
|
|
|
|
= recaptcha_tags nonce: content_security_policy_nonce
|
|
|
|
|
|
|
|
.gl-mt-5
|
2021-06-08 01:23:25 +05:30
|
|
|
= f.submit _("Resend"), class: 'gl-button btn btn-confirm'
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
.clearfix.prepend-top-20
|
|
|
|
= render 'devise/shared/sign_in_link'
|