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

new.html.haml « confirmations « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08e174908654f9585048cfd37b06d2dfbac6ee9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.login-box.panel.panel-default
  .panel-heading
    %h3.panel-title Resend confirmation instructions
  .panel-body
    = form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
      .devise-errors
        = devise_error_messages!
      .clearfix.append-bottom-20
        = f.email_field :email, placeholder: 'Email', class: "form-control", required: true
      .clearfix.append-bottom-10
        = f.submit "Resend confirmation instructions", class: 'btn btn-success'
  .panel-footer
    = render 'devise/shared/sign_in_link'