Loading...
Vanilla JS login system with session persistence using simple browser cookies.
A lightweight authentication system built with vanilla HTML, CSS, and JavaScript to demonstrate session persistence using browser cookies.
This project is for educational purposes. Storing user credentials directly in cookies on the client-side is insecure and should never be done in production. Always use server-side authentication and secure session management.
app_users.active_user session cookie.active_user cookie to handle redirects and protect the profile page.