Hello,
I want to implement two factor authetication in my django app. The steps are as follows:
1. User need to register
2. User need to login
3. As login user, user need to send a token for verification, if verification is ok, I set the variable like this request.session['token']=True.
I have a problem cause when I login as different users this session variable is still set to true. I am probably missing something, I assume that request.session is per user not per whole app.
Best regard
Mateusz Wasielewski