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

new.html.haml « passwords « devise « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 040821ca32adf1c6c8b7c7af905355eefa2471db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { class: "login-box", method: :post }) do |f|
  %h3.page-title Reset password
  .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 "Reset password", class: "btn-primary btn"
  %hr
  %p
    %span.light
      Already have login and password?
    %strong
      = link_to "Sign in", new_session_path(resource_name)