You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

password_recovery.rhtml 721B

123456789101112131415161718192021
  1. <center>
  2. <div class="box login">
  3. <h2><%=l(:label_password_lost)%></h2>
  4. <p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
  5. <%= error_messages_for 'user' %>
  6. <%= start_form_tag({:token => @token.value}, :class => "tabular") %>
  7. <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
  8. <%= password_field_tag 'new_password', nil, :size => 25 %></p>
  9. <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
  10. <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
  11. <p><center><%= submit_tag l(:button_save) %></center></p>
  12. <%= end_form_tag %>
  13. </div>
  14. </center>