[Django]-Django: two sessions in the same browser

0đź‘Ť

Modern browsers (e.g. Firefox, Chromium, Brave, …) have the ability to open a page without reference to existing history, cookies, etc.

  • In Firefox this is termed “Private Browsing”; you open a “Private Window”.

  • In Brave this is termed a “Private Tab”.

  • In Chromium this is termed “Incognito Mode”.

By using any of these, you can make a new “session” that will not present as any other logged-in session. This should allow you to have an arbitrary number of sessions at once.

👤bignose

Leave a comment