To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 20 / 20b8ba7bb15b0efb2e3e09bae49971ba5e4c3a84.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (751 Bytes)

1 1296:038ba2d95de8 Chris
<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 %>