Django-Registration: Email as username
问题 How do I use emails instead of username for authentication using django-registration. Further how do I enforce this change once I have already installed the registration module. Do I edit the solution here Anyone knows a good hack to make django-registration use emails as usernames? in the lib folder? 回答1: Dear fellow Django Coder, I think this is the best way to do it. Good luck! First step, is to create the form you'd like to use . project/accounts/forms.py from django import forms from