Variety of small changes (mostly to properties) plus a few "in the
[selectricity-live] / vendor / plugins / login_engine / app / views / user / forgot_password.rhtml
1 <div title="<%= title_helper %>" class="form">
2   <h3>Forgotten Password</h3>
3
4   <%= error_messages_for 'user' %>
5
6   <div class="form-padding">
7     <p>Enter your email address in the field below and click 'Reset Password' to have instructions on how to retrieve your forgotten password emailed to you.</p>
8
9     <%= start_form_tag_helper %>
10       <label>Email Address:</label> <%= text_field("user", "email", "size" => 30) %>
11
12       <div class="button-bar">
13         <%= submit_tag 'Reset Password' %>
14         <%= link_to 'Cancel', :action => 'login' %>
15       </div>
16     <%= end_form_tag %>
17   </div>
18 </div>

Benjamin Mako Hill || Want to submit a patch?