Hi guys, I'm wondering if anyone knows of a good way to add a 'verify email' field to auth's register form?
I basically want to replicate the verify password functionality for the email field but I notice that this is done inside the auth.register method after the creation of the SQLFORM: if self.settings.register_verify_password: ..... Create the verify password field and append to the form.... Is there a nice way to do this without either modifying the auth.register code or adding a bogus field to the auth_user table? Cheers, John

