##// END OF EJS Templates
Fixed a bug in open_id_authentication, where relative_url_root is defined...
Fixed a bug in open_id_authentication, where relative_url_root is defined on ActionController:AbstractRequest not Base #699 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2441 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r914:fde4a42e2aa5
r2380:a4e6e13b704e
Show More
password_recovery.rhtml
15 lines | 611 B | text/html+ruby | RhtmlLexer
/ app / views / account / password_recovery.rhtml
<h2><%=l(:label_password_lost)%></h2>
<%= error_messages_for 'user' %>
<% form_tag({:token => @token.value}) do %>
<div class="box tabular">
<p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
<%= password_field_tag 'new_password', nil, :size => 25 %><br />
<em><%= l(:text_caracters_minimum, 4) %></em></p>
<p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
</div>
<p><%= submit_tag l(:button_save) %></p>
<% end %>