According to Django documentation, \"if SESSION_EXPIRE_AT_BROWSER_CLOSE is set to True, Django will use browser-length cookies -- cookies that expire as soon as the user clo
@istruble and @haasfsafas are both correct. The solution is to
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
django_session
table to clear out any sessions that might cause confusion. (delete from django_session
)