mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-05 05:18:44 -05:00
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:
@@ -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)'));
|
||||
|
||||
Reference in New Issue
Block a user