public
Description: An example rails app using the Authlogic authentication library
Homepage: http://authlogicexample.binarylogic.com
Clone URL: git://github.com/binarylogic/authlogic_example.git
Click here to lend your support to: authlogic_example and make a donation at www.pledgie.com !
authlogic_example / app / views / password_resets / edit.html.erb
100644 12 lines (11 sloc) 0.385 kb
1
2
3
4
5
6
7
8
9
10
11
12
<h1>Change My Password</h1>
 
<% form_for @user, :url => password_reset_path, :method => :put do |f| %>
  <%= f.error_messages %>
  <%= f.label :password %><br />
  <%= f.password_field :password %><br />
  <br />
  <%= f.label :password_confirmation %><br />
  <%= f.password_field :password_confirmation %><br />
  <br />
  <%= f.submit "Update my password and log me in" %>
<% end %>