##// END OF EJS Templates
Diff style (inline or side by side) automatically saved as a user preference....
Diff style (inline or side by side) automatically saved as a user preference. Fixed a Postgres test failure. git-svn-id: http://redmine.rubyforge.org/svn/trunk@893 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r736:827e998afef3
r880:1454a711caf6
Show More
password_recovery.rhtml
15 lines | 612 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_length_between, 4, 12) %></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 %>