To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / account / password_recovery.rhtml @ 441:cbce1fd3b1b7
History | View | Annotate | Download (647 Bytes)
| 1 |
<h2><%=l(:label_password_lost)%></h2> |
|---|---|
| 2 |
|
| 3 |
<%= error_messages_for 'user' %>
|
| 4 |
|
| 5 |
<% form_tag({:token => @token.value}) do %>
|
| 6 |
<div class="box 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 %><br /> |
| 9 |
<em><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em></p> |
| 10 |
|
| 11 |
<p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label> |
| 12 |
<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p> |
| 13 |
</div>
|
| 14 |
<p><%= submit_tag l(:button_save) %></p> |
| 15 |
<% end %>
|