[Answered ]-How to Logout the App when Refresh the page ? In Django

1👍

Create a Middleware, and write this function:

def logout_when_refresh(request):
    logout(request)

Leave a comment