I am working on implementing the solution outlined here: How to use custom password validators beside the django auth password validators?
The answer is very helpful except for one aspect: Where do I put the code for the validator?! In AUTH_PASSWORD_VALIDATORS I see the line:
'NAME': registration.validators.CustomPasswortValidator
but how do I put the CustomPasswortValidator method into registration.validators? What even is registration.validators? Where can I find that?
Thank you