I am trying to build an email verification portion of my application. So the user enters their email, hits submit, and they will get an email with a one-time "token" or link that allows them to access the actual sign up page. How do I go about this with the newer version of django since the
from django.contrib.auth.tokens import PasswordResetTokenGenerator
from django.utils import six
code doesn't seem to be working?
The actual error says cannot import name six from django.utils. I see in other answers Getting error cannot import name 'six' from 'django.utils' when using Django 3.0.0 latest version that it has to do with six being dropped from django 3.0. Is there a better way to do verification emails upon registration?