##// END OF EJS Templates
remove trailing white-spaces from test/unit/issue_status_test.rb....
remove trailing white-spaces from test/unit/issue_status_test.rb. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6747 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6451:bfd22a4a1313
r6627:a00e391a9908
Show More
password_recovery.html.erb
15 lines | 647 B | text/plain | TextLexer
/ app / views / account / password_recovery.html.erb
<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, :count => Setting.password_min_length) %></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 %>