How to store user credentials temporarily for email verification in a django web app?
I want to create my own email verification flow, where the user enters his credentials and gets an OTP on the given email. When user enters the correct OTP within the time limit of 10 minutes, it will register the user and his credentials will be stored permanently in my database.
How do I store the credentials temporarily for a time limit of 10 minutes ?