##// END OF EJS Templates
Fixed: <td> closed with a </th>...
Fixed: <td> closed with a </th> git-svn-id: http://redmine.rubyforge.org/svn/trunk@886 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r736:827e998afef3
r873:26a1ae480836
Show More
password_recovery.rhtml
15 lines | 612 B | text/html+ruby | RhtmlLexer
/ app / views / account / password_recovery.rhtml
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 />
<em><%= l(:text_length_between, 4, 12) %></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>
<% end %>