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.html.erb @ 1531:ae8145b28b2b
History | View | Annotate | Download (751 Bytes)
| 1 |
<h2><%=l(:label_password_lost)%></h2> |
|---|---|
| 2 |
|
| 3 |
<%= error_messages_for 'user' %>
|
| 4 |
|
| 5 |
<%= form_tag(lost_password_path) do %>
|
| 6 |
<%= hidden_field_tag 'token', @token.value %>
|
| 7 |
<div class="box tabular"> |
| 8 |
<p>
|
| 9 |
<label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label> |
| 10 |
<%= password_field_tag 'new_password', nil, :size => 25 %>
|
| 11 |
<em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em> |
| 12 |
</p>
|
| 13 |
|
| 14 |
<p>
|
| 15 |
<label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label> |
| 16 |
<%= password_field_tag 'new_password_confirmation', nil, :size => 25 %>
|
| 17 |
</p>
|
| 18 |
</div>
|
| 19 |
<p><%= submit_tag l(:button_save) %></p> |
| 20 |
<% end %>
|