What cookies do we use?
Three kinds — all three functional:
-
Session cookie (
laravel_session): keeps you signed in. Expires when you close the browser or after 2 hours of inactivity. -
CSRF token (
XSRF-TOKEN): protects forms against cross-site request forgery. Expires when you close the browser. -
Language preference (
locale): remembers whether you picked English or Dutch. Expires after 1 year.
What about analytics / tracking?
We don't set analytics cookies (no Google Analytics, no Facebook Pixel, no ad networks). Server-side we do log page accesses for security and billing — that data isn't linked to any cookies.
How do I block these cookies?
The three cookies above are required for sign-in and form submission. You can block them in your browser settings, but then the portal won't work. You don't need to accept a cookie banner because we don't set any tracking cookies — that's GDPR-compliant.