ICSI 418Y – Software Engineering | Homework 1
Basics of Web Development – Front End
A two-page web application featuring a Login page and a Sign Up page, built with plain HTML and CSS (no external frameworks).
se-login-signup/
├── login.html # Login page (User ID + Password)
├── signup.html # Sign Up page (First/Last Name, User ID, Password)
├── styles.css # Shared stylesheet for both pages
└── README.md # This file
| Page | File | Description |
|---|---|---|
| Login | login.html |
User ID + Password fields, Submit button, link to Signup |
| Sign Up | signup.html |
First Name, Last Name, User ID, Password fields, Submit button, link to Login |
- Shared
styles.cssused by both pages for visual consistency - Forms are centered on the page with clean spacing and alignment
- No external CSS frameworks used (pure HTML + CSS)
Open either login.html or signup.html directly in any browser.
The pages link to each other via the "Create one →" and "← Sign in" anchor links.
Add HTML structure– scaffolded login.html and signup.htmlAdd CSS styling– added styles.css with shared stylesComplete README– added README.md with project documentation