Re: Django authentication best practice

2019-11-20 Thread Yoo
Whenever I deploy an app, I always use cookiecutter-django. I’m pretty sure there is an option lying somewhere in the settings that let you disable username. If not, I believe the BaseUser model has the option of the unique identifier or username be set to the email itself. Otherwise, you can d

Django authentication best practice

2019-11-20 Thread mmk mmk
I want to replace django default username and password authentication with email and password authentication, i have many solution like extends Abstractbaseuser or using 3rd part like django-allauth . My question now which is best practice to using to do this? -- You received this message becau