Added the RoR Login-Engine and activated it on the site.
[selectricity-live] / vendor / plugins / login_engine / app / views / user / change_password.rhtml
1 <div title="<%= title_helper %>" class="form">
2   <h3>Change Password</h3>
3
4   <%= error_messages_for 'user' %>
5
6   <div class="form-padding">
7     <p>Enter your new password in the fields below and click 'Change Password' to have a new password sent to your email inbox.</p>
8
9     <%= start_form_tag :action => 'change_password' %>
10       <%= render_partial 'password', :user => @user, :submit => false %>
11       <div class="button-bar">
12         <%= submit_tag 'Change password' %>
13         <%= link_to 'Cancel', :action => 'home' %>
14       </div>
15     <%= end_form_tag %>
16   </div>
17 </div>

Benjamin Mako Hill || Want to submit a patch?