Skip to content

eldest-daughter/django-strongerpassword

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stronger Password

Quick start

  1. Add "strongerpassword" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'strongerpassword',
    ]
    
  2. Make use of the StrongerPasswordField form field:

class Form(forms.Form):
password = StrongerPasswordField(label='Password')
  1. Add settings (optional)
STRONGER_PASSWORD = {
'length': 6, 'numbers': 1, 'special': 1, 'dictionary': path/to/dictionary

}

Build:

python setup.py sdist

About

Strong password validation for django

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages