Someone has a guide mb or tutorial about how can i make instant email verification by code like i want to register user and after he typed his email username and password in registerForm send him code on email NOT link and check that code and create user if everything is good with code
And i also searching for way to do the same with drf
A minimal specification to add user signup with email code verification in Django can be:
On the User
model, add two fields:
email_code: str
)is_first_login: str = True
)On the user signup form/view
email_code
fieldOn the user login form/view
email
exists in the database and if is_first_login==True
.
is_first_login
to False