A simple and smart Login & Registration application built using HTML, CSS, and JavaScript, where authentication is handled using Local Storage.
🌐 Live Demo:
https://login-auth-two-alpha.vercel.app/
- ✅ User Registration
- ✅ User Login Authentication
- ✅ Email Validation using Regex
- ✅ Password Length Validation
- ✅ Data stored using Local Storage
- ✅ Prevents invalid login attempts
- ✅ Clean and Responsive UI
- ✅ Deployed on Vercel
- HTML5
- CSS3
- JavaScript (Vanilla JS)
- Local Storage API
- Vercel (Deployment)
- User enters email and password
- Email is validated using Regex
- Password must meet minimum length requirement
- Data is securely stored in browser Local Storage
- User credentials are compared with stored data
- If matched → Login Successful
- If not matched → Error Alert
Local Storage allows:
- Persistent data storage in browser
- No backend required
- Simple authentication logic for learning/demo purposes
This project is for learning purposes only.
In real-world applications, passwords should be:
- Encrypted
- Stored in a database
- Validated on a backend server