Skip to content

Commit c754a40

Browse files
committed
Tick off requirements
1 parent 2261aa0 commit c754a40

2 files changed

Lines changed: 18 additions & 26 deletions

File tree

Form-Controls/README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
<!--{{<objectives>}}>-->
66

7-
- [ ] Interpret requirements and check against a list of criteria
8-
- [ ] Write a valid form
9-
- [ ] Test with Devtools
10-
- [ ] Refactor using Devtools
11-
- [ ] Use version control by committing often and pushing regularly to GitHub
12-
- [ ] Develop the habit of writing clean, well-structured, and error-free code
7+
- [x] Interpret requirements and check against a list of criteria
8+
- [x] Write a valid form
9+
- [x] Test with Devtools
10+
- [x] Refactor using Devtools
11+
- [x] Use version control by committing often and pushing regularly to GitHub
12+
- [x] Develop the habit of writing clean, well-structured, and error-free code
1313
<!--{{<objectives>}}>-->
1414

1515
## Task
@@ -44,13 +44,13 @@ Let's write out our testable criteria. Check each one off as you complete it.
4444

4545
### HTML
4646

47-
- [ ] My form is semantic HTML.
48-
- [ ] All inputs have associated labels.
49-
- [ ] My Lighthouse Accessibility score is 100.
50-
- [ ] I require a valid name.
51-
- [ ] I require a valid email.
52-
- [ ] I require one colour from a defined set of 3 colours.
53-
- [ ] I require one size from a defined set of 6 sizes.
47+
- [x] My form is semantic HTML.
48+
- [x] All inputs have associated labels.
49+
- [x] My Lighthouse Accessibility score is 100.
50+
- [x] I require a valid name.
51+
- [x] I require a valid email.
52+
- [x] I require one colour from a defined set of 3 colours.
53+
- [x] I require one size from a defined set of 6 sizes.
5454

5555
### Developers must adhere to professional standards.
5656

@@ -59,10 +59,10 @@ Let's write out our testable criteria. Check each one off as you complete it.
5959
These practices reflect the level of quality expected in professional work.
6060
They ensure your code is reliable, maintainable, and presents a polished, credible experience to users.
6161

62-
- [ ] My HTML code has no errors or warnings when validated using https://validator.w3.org/
63-
- [ ] My code is consistently formatted
64-
- [ ] My page content is free of typos and grammatical mistakes
65-
- [ ] I commit often and push regularly to GitHub
62+
- [x] My HTML code has no errors or warnings when validated using https://validator.w3.org/
63+
- [x] My code is consistently formatted
64+
- [x] My page content is free of typos and grammatical mistakes
65+
- [x] I commit often and push regularly to GitHub
6666

6767
## Resources
6868
- [MDN: Form controls](https://developer.mozilla.org/en-US/docs/Learn/Forms)

Form-Controls/index.html

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,7 @@ <h1>Product Pick</h1>
1515

1616
<main>
1717
<form class="form">
18-
<!-- - [ ] My form is semantic HTML.
19-
- [ ] My form is semantic HTML.
20-
- [ ] All inputs have associated labels.
21-
- [ ] My Lighthouse Accessibility score is 100.
22-
- [ ] I require a valid name.
23-
- [ ] I require a valid email.
24-
- [ ] I require one colour from a defined set of 3 colours.
25-
- [ ] I require one size from a defined set of 6 sizes. !-->
26-
18+
2719
<div>
2820
<label for="name"> Name:</label>
2921
<input type="text" name="name" id="name" minlength="2" required />

0 commit comments

Comments
 (0)