Nest inputs in labels

I cannot pass step 15 on th Learn HTML Forms by building a Registration Form. The error I get is You should add the first input after the label text enter your firstname:, and include a space after the colon.
Below is the code I am using.



Enter Your First Name:
Enter Your Last Name:
Enter Your Email:
Create a New Password:

Can someone point out where I am going wrong. I have checked the spacing and looked on the forum but cannot get passed this.
include a space after the colon.

Hey! Welcome to the freeCodeCamp’s community forums.

When you’re describing a problem you need to add your code inside of three starting and ending ` (these are backticks, which you can find right above the tab key) or else the code you’re trying to show will not be shown here.

 <form action='https://register-demo.freecodecamp.org'>
      <fieldset>
        <label>Enter Your First Name: <input></label>
        <label>Enter Your Last Name: <input></label>
        <label>Enter Your Email: <input></label>
        <label>Create a New Password: <input></label>
      </fieldset>

Thanks ,Hopefully you can see the code now

Hey rebecca!

when i try to attempt the challenge with your code, they seem to pass for me.

image

i think you have an extension on in your computer that’s messing with the tests. you should try doing the challenge on some other browser. if the problem continues reset the challenge and try again.

ok great thank you I’ll give that a go

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.