I am developing an Django application using django auth module and would like to prevent multiple login using the same user name and password.
It should prevent mult
Out of the box, Django doesn't provide you with a way to prevent concurrent sessions for the same user account, and that isn't a trivial thing to do. However, here's another question with some suggestions about how you might make this happen: How can I detect multiple logins into a Django web application from different locations?