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: 387ec7676d4763e15db48c064cf68b970ae1382b (plain)
1
2
3
4
5
6
7
8
.login-box
  %h3.page-title Resend confirmation instructions
  = form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
    = devise_error_messages!
    = f.email_field :email, placeholder: 'Email'
    %div= f.submit "Resend confirmation instructions", class: 'btn btn-success'
  %hr
  = link_to "Sign in", new_session_path(resource_name)