Password Requirements

Permalink
Does anyone know of a solution in C5 for requiring at least 1 number and/or 1 special character? I know this can be accomplished with Javascript on the password reset page but that's not really a great solution.

Does anyone know of a way to do this within C5?

Thanks.

 
TNTdesign replied on at Permalink Reply
Anyone have any thoughts on this? I know that C5 has been used for some larger corporate sites so I'd think that someone must've dealt with needing to require special characters and/or numbers in C5 passwords.

Thanks.
leesalminen replied on at Permalink Best Answer Reply
I would probably just modify the registration method to validate password according to your guidelines. Use regex to validate, if it fails, spit out an incorrect password error to the registration page.
TNTdesign replied on at Permalink Reply
That makes sense. Thanks!