EduGuard is a responsive and accessible student registration and login interface built entirely with HTML and CSS. It serves as a foundational front-end project for educational platforms, emphasizing clean design and user-friendly forms.
Click here to view the live site: https://magenta-moonbeam-81d757.netlify.app/
✅ Student Registration Form – Collects user details: first name, last name, email, phone number, password, and course selection.
✅ Login Form – Allows existing users to log in using their email and password.
✅ Responsive Design – Works seamlessly on desktops, tablets, and mobile devices.
✅ Accessible Markup – Uses semantic HTML elements to improve accessibility.
- A modern web browser (e.g., Chrome, Firefox, Edge)
- A code editor (e.g., Visual Studio Code, Sublime Text)
1️⃣ Clone the repository
git clone [https://github.com/yourusername/eduguard.git](https://github.com/yourusername/eduguard.git)2️⃣ Navigate to the project directory
cd eduguard3️⃣ Open the project
Open index.html directly in your browser, or use the Live Server extension in VS Code for real-time preview.
eduguard/
├── index.html # Home page
├── register.html # Student registration form
├── login.html # User login form
├── css/
│ └── styles.css # Stylesheet
└── README.md # Documentation
Registration
- Open
register.html - Fill in the required fields (First Name, Last Name, Email, Phone Number, Password, Course)
- Click
Register
Login
- Open
login.html - Enter registered Email & Password
- Click
Login
Modify css/styles.css to change colors, fonts, spacing, or layout.
Update register.html or login.html to add/remove input fields. Ensure corresponding labels and placeholders are updated.
- W3Schools – Create a Register Form
- W3Schools – Create a Login Form
- GeeksforGeeks – HTML Registration Form
- GeeksforGeeks – HTML Login Form
Contributions are welcome!
- Fork the repository
- Create a branch
git checkout -b feature/your-feature-name
- Commit your changes
git commit -m "Add your feature description" - Push to your branch
git push origin feature/your-feature-name
- Open a Pull Request
This project is licensed under the MIT License – see the LICENSE file for details.