Skip to content
Snippets Groups Projects
Commit 46231f0f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix password set form and infinite loop

parent fbf69899
No related branches found
No related tags found
No related merge requests found
class PasswordsController < ApplicationController
layout 'navless'
 
skip_before_filter :check_password_expiration
before_filter :set_user
before_filter :set_title
 
Loading
Loading
%h3.page_title Setup your new password
%br
= form_for @user, url: profile_password_path, method: :put do |f|
.padded
%p.slead After successful password update you will be redirected to dashboard
= form_for @user, url: profile_password_path, method: :post do |f|
.light-well.padded
%p.slead
Please set new password before proceed.
%br
After successful password update you will be redirected to login screen
-if @user.errors.any?
.alert.alert-error
%ul
Loading
Loading
@@ -20,4 +19,4 @@
= f.password_field :password_confirmation, required: true
.clearfix
.input
= f.submit 'Save password', class: "btn btn-save"
= f.submit 'Set new password', class: "btn btn-create"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment