password-confirmation

Tell AuthLogic to not use a password confirmation

I have this view: new.html.haml %h1 New account - form_for @user do |f| = f.error_messages = render :partial => "form", :object => f = f.submit "Create account" _form.html.haml = form.label :email = form.text_field :email %br/ = form.label :password, form.object.new_record? ? nil : "Change password" = form.password_field :pas...

Ruby on Rails Authlogic gem - Password confirmation

Following the http://github.com/binarylogic/authlogic_example how would I change it so that password confirmation is required for everything (such as for the edit user, and password reset pages) except for the registration page? I'd like the registration page to only require an email, a password and a captcha. I only want password confi...