Skip to content

bennylope/django-email-users

Repository files navigation

Django email users

For when you want regular Django users but email as usernames.

This is a stock replacement for Django's auth.User model that removes the username field in favor of a unique email field. Both the User model and the forms enforce lower cased email addresses to ensure uniqueness without surprises.

Inspired by the users module in pydanny's original Django cookiecutter project template which I kept using and then editing to support email addresses.

Installing

Install and download with pip:

pip install django-email-users

Add to your installed apps in your settings.py file:

INSTALLED_APPS = [
    ...
    'users',
]

Change your project's configured user in your settings.py file:

AUTH_USER_MODEL = 'users.User'

Profit.

About

Stock Django users without the username

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •