Login Cookies

Wiki mirrorView source

We use cookies

We use cookies to enhance your browsing experience and maintain secure access to your account. For login purposes, a session token is stored in an httpOnly cookie rather than in sessionStorage. This approach offers several benefits:
  • Security: httpOnly cookies cannot be accessed via JavaScript, reducing the risk of theft through cross-site scripting (XSS) attacks.
  • Convenience: It allows you to stay logged in across multiple browser tabs without needing to re-enter your credentials.
  • Session Management: The cookie automatically expires when you log out or after a defined inactivity period.