This project contains a simple login interface with a Node.js server. To make the project work correctly, you must run the backend server.
Before running this project, make sure you have:
- Node.js (v18 or higher recommended)
- npm (comes with Node.js)
Check installation:
node -v
npm -v
git clone <YOUR_GITHUB_REPO_URL>
cd <PROJECT_FOLDER>npm installnode server.jsIf successful, you should see something like:
Server running on http://localhost:3000
Open:
http://localhost:3000
project/
βββ server.js # Node.js backend server
βββ public/ # Frontend files (HTML, CSS, JS)
β βββ index.html
βββ package.json
βββ README.md
For testing purposes:
- Username: admin
- Password: 1234
β οΈ This is a demo project. Credentials are not secure.
- You must run the server for the login to work
- Opening
index.htmldirectly will NOT work - This project is for learning and testing purposes only
- HTML / CSS / JavaScript
- Node.js
- Express (if used)
Free to use for learning and testing.