##// END OF EJS Templates
Additional tests for SearchController and handle my_projects scope without memberships....
Additional tests for SearchController and handle my_projects scope without memberships. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8266 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7160:423671456b30
r8146:bb0cd34f4e2e
Show More
password_recovery.html.erb
15 lines | 645 B | text/plain | TextLexer
/ app / views / account / password_recovery.html.erb
Jean-Philippe Lang
0.3 unstable...
r10 <h2><%=l(:label_password_lost)%></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
0.3 unstable...
r10 <%= error_messages_for 'user' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Application layout refactored....
r736 <% 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 />
Eric Davis
Use the minimum password length setting when reseting a password. (#4683)...
r3227 <em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
Application layout refactored....
r736 <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>
Jean-Philippe Lang
0.3 unstable...
r10 </div>
Jean-Philippe Lang
Application layout refactored....
r736 <p><%= submit_tag l(:button_save) %></p>
Toshi MARUYAMA
remove trailing white-spaces app/views/account/password_recovery.html.erb...
r7160 <% end %>