blob: e1462760c7f7dea641c82614ed6cf3c0f6863ba3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<% @title = "Change password" %>
<div id="change_password">
<% form_tag({:action => "signchange"}, {:id => "signchange_form"}) do %>
<%= foi_error_messages_for :signchange %>
<div class="form_note">
<h1>Change your password</h1>
</div>
<p>
<label class="form_label" for="signchange_email">Your e-mail:</label>
<%= text_field 'signchange', 'email', { :size => 20 } %>
</p>
<p class="form_note">
<strong>Note:</strong>
We will send you an email. Follow the instructions in it to change
your password.
</p>
<div class="form_button">
<%= hidden_field_tag 'submitted_signchange_send_confirm', 1 %>
<%= hidden_field_tag 'pretoken', params[:pretoken] %>
<%= submit_tag "Submit" %>
</div>
<% end %>
</div>
|