gitlab-org--gitlab-foss/app/views/devise/confirmations/new.html.haml

15 lines
605 B
Plaintext
Raw Normal View History

= render 'devise/shared/tab_single', tab_title: 'Resend confirmation instructions'
.login-box
.login-body
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post, class: 'show-gl-field-errors' }) do |f|
.devise-errors
= devise_error_messages!
.form-group
= f.label :email
= f.email_field :email, class: "form-control", required: true, title: 'Please provide a valid email address.'
2015-02-05 14:56:58 +00:00
.clearfix
= f.submit "Resend", class: 'btn btn-success'
2015-02-05 14:56:58 +00:00
.clearfix.prepend-top-20
= render 'devise/shared/sign_in_link'