aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/user/signchange_email.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/user/signchange_email.rhtml')
-rw-r--r--app/views/user/signchange_email.rhtml30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/views/user/signchange_email.rhtml b/app/views/user/signchange_email.rhtml
new file mode 100644
index 000000000..5bd545d8d
--- /dev/null
+++ b/app/views/user/signchange_email.rhtml
@@ -0,0 +1,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_email', 1 %>
+ <%= hidden_field_tag 'pretoken', params[:pretoken] %>
+ <%= submit_tag "Submit" %>
+ </div>
+<% end %>
+
+</div>