--- id: 60f5dc35c07ac1078f140916 title: Step 15 challengeType: 0 dashedName: step-15 --- # --description-- Aggiungi il seguente testo all'interno degli elementi `label`: - `Enter Your First Name:` - `Enter Your Last Name:` - `Enter Your Email:` - `Create a New Password:` # --hints-- Il primo `label` dovrebbe contenere il testo `Enter Your First Name:`. ```js assert.match(document.querySelector('label')?.innerHTML, /Enter Your First Name:/i); ``` Il secondo `label` dovrebbe contenere il testo `Enter Your Last Name:`. ```js assert.match(document.querySelector('fieldset > label:nth-child(2)')?.innerHTML, /Enter Your Last Name:/i); ``` Il terzo `label` dovrebbe contenere il testo `Enter Your Email:`. ```js assert.match(document.querySelector('fieldset > label:nth-child(3)')?.innerHTML, /Enter Your Email:/i); ``` Il quarto `label` dovrebbe contenere il testo `Create a New Password:`. ```js assert.match(document.querySelector('fieldset > label:nth-child(4)')?.innerHTML, /Create a New Password:/i); ``` # --seed-- ## --seed-contents-- ```html Registration Form

Registration Form

Please fill out this form with the required information

--fcc-editable-region--
--fcc-editable-region--
``` ```css body { width: 100%; height: 100vh; margin: 0; background-color: #1b1b32; color: #f5f6f7; } ```