How do I change the required fields for registering? currently they're just email, user name, and password. I'd like to add age as a required field just as a double insurance policy. User agreement says they have to be 13 and I want them to actually key in that they're over 13.
Actually, I didn't need a mod. I just modified the register.asp file. Added this in there:
'############# added to verify age ################# if strAuthType = "db" then if Request.Form("age") = "" then Err_Msg = Err_Msg & "<li>You must enter your age</li>" end if if (Request.Form("age") <> "") then if Request.Form("age") < 16 then Err_Msg = Err_Msg & "<li>You must be 16 or older to become a member</li>" end if end if end if '###################################################