diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb index 5c4ecaf40..ea3dcb1ae 100644 --- a/app/controllers/account_controller.rb +++ b/app/controllers/account_controller.rb @@ -70,7 +70,7 @@ class AccountController < ApplicationController if token.save Mailer.lost_password(token).deliver flash[:notice] = l(:notice_account_lost_email_sent) - redirect_to :action => 'login' + redirect_to signin_path return end end @@ -129,7 +129,7 @@ class AccountController < ApplicationController token.destroy flash[:notice] = l(:notice_account_activated) end - redirect_to :action => 'login' + redirect_to signin_path end private @@ -224,7 +224,7 @@ class AccountController < ApplicationController def onthefly_creation_failed(user, auth_source_options = { }) @user = user session[:auth_source_registration] = auth_source_options unless auth_source_options.empty? - render :action => 'register' + render register_path end def invalid_credentials @@ -240,7 +240,7 @@ class AccountController < ApplicationController if user.save and token.save Mailer.register(token).deliver flash[:notice] = l(:notice_account_register_done) - redirect_to :action => 'login' + redirect_to signin_path else yield if block_given? end @@ -277,6 +277,6 @@ class AccountController < ApplicationController def account_pending flash[:notice] = l(:notice_account_pending) - redirect_to :action => 'login' + redirect_to signin_path end end diff --git a/app/views/account/login.html.erb b/app/views/account/login.html.erb index 99eda9242..f2f7f74ed 100644 --- a/app/views/account/login.html.erb +++ b/app/views/account/login.html.erb @@ -1,6 +1,6 @@ <%= call_hook :view_account_login_top %>
<% if Setting.lost_password? %> - <%= link_to l(:label_password_lost), :controller => 'account', :action => 'lost_password' %> + <%= link_to l(:label_password_lost), lost_password_path %> <% end %> |
diff --git a/app/views/account/lost_password.html.erb b/app/views/account/lost_password.html.erb
index 44f851475..19df8d9a9 100644
--- a/app/views/account/lost_password.html.erb
+++ b/app/views/account/lost_password.html.erb
@@ -1,11 +1,11 @@
<%=l(:label_password_lost)%>-
-<%= form_tag({:action=> "lost_password"}, :class => "tabular") do %>
-
-
diff --git a/app/views/account/register.html.erb b/app/views/account/register.html.erb
index 7e44e123b..e8e8098fe 100644
--- a/app/views/account/register.html.erb
+++ b/app/views/account/register.html.erb
@@ -1,6 +1,6 @@
-<%= text_field_tag 'mail', nil, :size => 40 %> -<%= submit_tag l(:button_submit) %> - +<%= form_tag(lost_password_path) do %> +
+
<% end %>
-+ + <%= text_field_tag 'mail', nil, :size => 40 %> + <%= submit_tag l(:button_submit) %> + +<%=l(:label_register)%> <%=link_to l(:label_login_with_open_id_option), signin_url if Setting.openid? %>-<%= labelled_form_for @user, :url => {:action => 'register'} do |f| %> +<%= labelled_form_for @user, :url => register_path do |f| %> <%= error_messages_for 'user' %>
diff --git a/config/routes.rb b/config/routes.rb
index b4c792b99..e3ed8859a 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -20,8 +20,8 @@ RedmineApp::Application.routes.draw do
match 'login', :to => 'account#login', :as => 'signin'
match 'logout', :to => 'account#logout', :as => 'signout'
- match 'account/register', :to => 'account#register', :via => [:get, :post]
- match 'account/lost_password', :to => 'account#lost_password', :via => [:get, :post]
+ match 'account/register', :to => 'account#register', :via => [:get, :post], :as => 'register'
+ match 'account/lost_password', :to => 'account#lost_password', :via => [:get, :post], :as => 'lost_password'
match 'account/activate', :to => 'account#activate', :via => :get
match '/news/preview', :controller => 'previews', :action => 'news', :as => 'preview_news'
diff --git a/lib/redmine.rb b/lib/redmine.rb
index 1b9be57f5..0459dcc50 100644
--- a/lib/redmine.rb
+++ b/lib/redmine.rb
@@ -162,7 +162,7 @@ end
Redmine::MenuManager.map :account_menu do |menu|
menu.push :login, :signin_path, :if => Proc.new { !User.current.logged? }
- menu.push :register, { :controller => 'account', :action => 'register' }, :if => Proc.new { !User.current.logged? && Setting.self_registration? }
+ menu.push :register, :register_path, :if => Proc.new { !User.current.logged? && Setting.self_registration? }
menu.push :my_account, { :controller => 'my', :action => 'account' }, :if => Proc.new { User.current.logged? }
menu.push :logout, :signout_path, :if => Proc.new { User.current.logged? }
end
|