Hi,
I’m using the latest version of RoR. I’m having a problem with
passwords and password confirmations. I have a db table and
corresponding model – customer with a password field (but no password
confirmation field in the table). Here is the simple customer model
code:
class Customer < ActiveRecord::Base
belongs_to :subscriber
validates_confirmation_of :password
end
Here is part of the view where I’m asking for a password and password
confirmation:
Password
<%= password_field 'customer', 'password' %>
Confirm Password
<%= password_field 'password_confirmation', '' %>
However, even if the passwords don’t match, the script allows me to
submit and save the customer. What is missing from the above?
Thanks, - Dave