This project includes an HTML login form with a blurred background and an Express.js server that handles GET requests to validate user credentials. Simple Login Page with Express.js Server
📌 Overview
This project consists of a basic login page with a blurred background and an Express.js backend that handles user authentication. The frontend sends user credentials via a GET request, and the server validates them.
/your-project-folder
│── index.html # Login page (frontend)
│── index.js # Express.js server (backend)
│── back.jpg # Background image
│── README.md # Project documentation
│── package.json # Dependencies
🚀 Getting Started
1️⃣ Install Dependencies
Ensure you have Node.js installed, then run:
npm install express
2️⃣ Start the Server
Run the Express server with:
node index.js
Server will start at: http://localhost:4000
Backend (Express.js)
Handles login requests via GET /login_get.
Validates credentials (username: "hello", password: "hello").
Logs request data and responds accordingly.
License
This project is open-source and available under the MIT License.
💡 Happy Coding! 🚀
Screenshots:

