2006-07-29 13:32:58 +04:00
|
|
|
<h2><%=l(:label_password_lost)%></h2>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<%= error_messages_for 'user' %>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2007-09-22 17:17:49 +04:00
|
|
|
<% 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 />
|
2007-11-24 15:52:29 +03:00
|
|
|
<em><%= l(:text_caracters_minimum, 4) %></em></p>
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2007-09-22 17:17:49 +04:00
|
|
|
<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>
|
2006-07-29 13:32:58 +04:00
|
|
|
</div>
|
2007-09-22 17:17:49 +04:00
|
|
|
<p><%= submit_tag l(:button_save) %></p>
|
|
|
|
<% end %>
|