-
-
Notifications
You must be signed in to change notification settings - Fork 501
WestMidlands | 26-ITP-May | Gabriel Pawuoi | Sprint 1 | Form Controls #1314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,27 +1,52 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="utf-8" /> | ||
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
| <title>My form exercise</title> | ||
| <meta name="description" content="" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <title>T-Shirt Order Form</title> | ||
| <link rel="stylesheet" href="style.css"> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <h1>Product Pick</h1> | ||
| </header> | ||
| <main> | ||
| <form> | ||
| <!-- write your html here--> | ||
| <!-- | ||
| try writing out the requirements first as comments | ||
| this will also help you fill in your PR message later--> | ||
| </form> | ||
| </main> | ||
| <footer> | ||
| <!-- change to your name--> | ||
| <p>By HOMEWORK SOLUTION</p> | ||
| </footer> | ||
| </body> | ||
| <body> | ||
| <main class="container"> | ||
| <h1>T-Shirt Order Form</h1> | ||
|
|
||
| <form> | ||
| <div> | ||
| <label for="name">Full Name</label> | ||
| <input type="text" id="name"name="name" minlength="2" pattern=".*\S.*\S.*" placeholder="Enter your full name" required> | ||
| </div> | ||
|
|
||
| <div> | ||
| <label for="email">Email Address</label> | ||
| <input type="email" id="email" name="email" placeholder="Enter your email" required> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct Input type and required is used .
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you for the feedback. Since the assignment was limited to HTML and CSS, I used |
||
| </div> | ||
|
|
||
| <div> | ||
| <label for="colour">T-Shirt Colour</label> | ||
| <select id="colour" name="colour" required> | ||
| <option value="">Select a colour</option> | ||
| <option value="black">Black</option> | ||
| <option value="white">White</option> | ||
| <option value="blue">Blue</option> | ||
| </select> | ||
| </div> | ||
|
|
||
| <div> | ||
| <label for="size">T-Shirt Size</label> | ||
| <select id="size" name="size" required> | ||
| <option value="">Select a size</option> | ||
| <option value="xs">XS</option> | ||
| <option value="s">S</option> | ||
| <option value="m">M</option> | ||
| <option value="l">L</option> | ||
| <option value="xl">XL</option> | ||
| <option value="xxl">XXL</option> | ||
| </select> | ||
| </div> | ||
|
|
||
| <button type="submit">Place Order</button> | ||
| </form> | ||
| </main> | ||
|
|
||
| </body> | ||
| </html> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| body { | ||
| font-family: Arial, sans-serif; | ||
| background-color: #f4f4f4; | ||
| margin: 0; | ||
| padding: 40px; | ||
| } | ||
| .container { | ||
| max-width: 500px; | ||
| margin: 0 auto; | ||
| background-color: #ffffff; | ||
| padding: 30px; | ||
| border-radius: 8px; | ||
| box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | ||
| } | ||
| h1 { | ||
| text-align: center; | ||
| margin-bottom: 24px; | ||
| } | ||
| form { | ||
| display: flex; | ||
| flex-direction: column; | ||
| gap: 20px; | ||
| } | ||
| label { | ||
| display: block; | ||
| margin-bottom: 6px; | ||
| font-weight: bold; | ||
| } | ||
| input, | ||
| select { | ||
| width: 100%; | ||
| padding: 10px; | ||
| border: 1px solid #cccccc; | ||
| border-radius: 4px; | ||
| font-size: 16px; | ||
| box-sizing: border-box; | ||
| } | ||
| button { | ||
| padding: 12px; | ||
| border: none; | ||
| background-color: #000000; | ||
| color: white; | ||
| font-size: 16px; | ||
| border-radius: 4px; | ||
| cursor: pointer; | ||
| } | ||
| button:hover { | ||
| background-color: #2d758b; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Input validation done
placeholder use
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All the requested changes are implemented!