Clarify 'Registration Form' project step 33 instructions (#46858)

* fix: clarify form step 33 instructions

* fix: simplify the form project instructions

Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>

Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>
This commit is contained in:
Seweryn
2022-07-11 21:46:13 +02:00
committed by GitHub
parent 9adf9fa9f2
commit f229ac13f2

View File

@@ -9,11 +9,11 @@ dashedName: step-33
The `textarea` element acts like an `input` element of type `text`, but comes with the added benefit of being able to receive multi-line text, and an initial number of text rows and columns.
To allow users to register with a bio, add a `label` with the text `Provide a bio:` followed by a `textarea` element, which requires a closing tag.
Users will be able to register with a bio. Add a `label` with the text `Provide a bio:` at the end of the `fieldset`. Add a `textarea` element after the `label` element. Note that the `textarea` requires a closing tag.
# --hints--
You should add a `label` element within the third `fieldset`, after the existing `label` elements.
You should add a `label` element at the end of the third `fieldset`, after the existing `label` elements.
```js
assert.exists(document.querySelector('fieldset:nth-child(3) > label:nth-child(4)'));