Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 38 additions & 1 deletion Form-Controls/index.html

@Luro91 Luro91 Sep 10, 2026

Copy link
Copy Markdown

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?

Copy link
Copy Markdown
Author

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.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see a different problem in lighthouse now: "Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets"

Original file line number Diff line number Diff line change
Expand Up @@ -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>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The validation does not allow special characters like the German ä,ü,ö or Russian ед

@HM-127BTY HM-127BTY Sep 10, 2026

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The 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?

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When I enter this string Är as name then it does not pass the validation although it is 2 characters

</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
Expand All @@ -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>
Loading