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

edit.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: 95c52608e1f29b225fa713a52cc46ce80479cd5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put, class: "login-box" }) do |f|
  %h3 Change your password
  .devise-errors
    = devise_error_messages!
  = f.hidden_field :reset_password_token
  %div
    = f.password_field :password, class: "form-control top", placeholder: "New password", required: true
  %div
    = f.password_field :password_confirmation, class: "form-control bottom", placeholder: "Confirm new password", required: true
  %div
  .clearfix.append-bottom-10
    = f.submit "Change my password", class: "btn btn-primary"
    = link_to "Sign in", new_session_path(resource_name), class: "btn pull-right"
  %div
    = link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name)