-
-
Notifications
You must be signed in to change notification settings - Fork 521
London | 2-ITP-Sept | Hugh Mills| Sprint 1 | Form Controls #1473
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
1a80e0b
b14a6c9
2e39c78
2c1de1d
06eac62
c6f3d57
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 |
|---|---|---|
|
|
@@ -13,6 +13,43 @@ <h1>Product Pick</h1> | |
| </header> | ||
| <main> | ||
| <form> | ||
| <div> | ||
| <label for="name">Name:</label> | ||
| <input type="text" id="name" placeholder="Hugh Mills" pattern=".*\S.*\S.*." 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. The validation does not allow special characters like the German ä,ü,ö or Russian ед
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. I didn't use any of those, and I can't see any text input that matches those, can you point it out for me? |
||
| </div> | ||
| <div> | ||
| <label for="email">Email:</label> | ||
| <input type="email" id="email" placeholder="hugh.mills@myemail.com" required> | ||
| </div> | ||
| <div> | ||
| Colour- Please Select one:<br> | ||
| <label for="white">White</label> | ||
| <input type="radio" id="white" name="colour" value="white" required> | ||
| <label for="black">Black</label> | ||
| <input type="radio" id="black" name="colour" value="black"> | ||
| <label for="blue">Blue</label> | ||
| <input type="radio" id="blue" name="colour" value="blue"> | ||
| </div> | ||
| <div> | ||
| Size - Please select one:<br> | ||
| <label for="xs">XS:</label> | ||
| <input type="radio" id="xs" name="size" value="xs" required> | ||
| <label for="s">S:</label> | ||
| <input type="radio" id="s" name="size" value="s"> | ||
| <label for="m">M:</label> | ||
| <input type="radio" id="m" name="size" value="m"><br> | ||
| <label for="l">L:</label> | ||
| <input type="radio" id="l" name="size" value="l"> | ||
| <label for="xl">XL:</label> | ||
| <input type="radio" id="xl" name="size" value="xl"> | ||
| <label for="xxl">XXL:</label> | ||
| <input type="radio" id="xxl" name="size" value="xxl"> | ||
| </div> | ||
| <div> | ||
| <input id="sumbit" type="submit"> | ||
| <input id="reset" type="reset"> | ||
| </div> | ||
|
|
||
| <!-- write your html here--> | ||
| <!-- | ||
| try writing out the requirements first as comments | ||
|
|
@@ -21,7 +58,7 @@ <h1>Product Pick</h1> | |
| </main> | ||
| <footer> | ||
| <!-- change to your name--> | ||
| <p>By HOMEWORK SOLUTION</p> | ||
| <p>By Hugh Mills</p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
Uh oh!
There was an error while loading. Please reload this page.
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.
The lighthouse Accessibility score is below 100. How can you achieve 100?
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.
I see, i didn't have the labels matching id's on it, fixed that now.