Step 15 (Learn HTML Forms)

Hi All,
Now I’m getting stuck at Step 15
I have a space after the label text and correct notation for the input elements.
What am I missing?

    <label>Enter Your First Name: <input> </input>

    </label>

    <label>Enter Your Last Name: <input> </input>

    </label>

    <label>Enter Your Email: <input> </input>

    </label>

    <label>Create a New Password: <input> </input>

    </label>

  </fieldset>

1 Like

input is a self-closing tag

2 Likes

I changed that piece but still getting the error - really weird

@JeremyLT

Hi @TechnoPanther !

The issue is with the extra spacing you added like this

 <label>Enter Your First Name: <input> 

    </label>

When I fixed the spacing like this, then it passed.

<label>Enter Your First Name: <input></label>

You will have to do that for all labels.

Please post your actual code instead of a picture. Thanks

Thank you! I didn’t realize how finicky the spacing is

I did in my initial post but not the follow up post - sorry about that

I am having the same problem. I did exactly as it said to do, but it still won’t pass.

    <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>

HI @snaakebiites !

Welcome to the forum!

If you need help with a challenge, it would be best to create a new topic and post your question there with your code and challenge link.

We can help you out there

Thanks! :slight_smile:

1 Like