By default Django comes with an advanced password validator, meaning user must enter password with a minimum length of 8 characters, some special sign, number. For production environment this is very important, however for development environment a simpler password would do and it wouldn’t take so much time.

Today I have learned how to turn the advaced password protection off (remember to remove this line for production).

Add the following line to your settings.py file:

1
AUTH_PASSWORD_VALIDATORS = []