Planet Python
Follow
Mariatta: Disabling Signup in Django allauth
Django allauthDjango allauth is a popular third party package that provides a lot of functionality for handling user authentication,
with support for social authentication, email verification, multi-factor authentication, and more.It is a powerful library that greatly expands the built-in Django authentication system. It comes with its own basic
forms and models for user registration, login, logout, and password management.I like using it because often I just wanted to get a new Django project up and running quickly without having to write
up all the authentication-related views, forms, and templates myself. I’m using django-allauth in PyLadiesCon
Portal, and in my personal project Secret Codes.