can someone please tell me what’s wrong…I wrote the code right but the issue it didn’t validate…
<fieldset>
<label>Enter Your First Name: <input type="text"></label>
<label>Enter Your Last Name: <input type="text"></label>
<label>Enter Your Email: <input type="email"></label>
<label>Create a New Password: <input type="password"></label>
</fieldset>
<fieldset></fieldset>
<fieldset></fieldset>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Challenge: Learn HTML Forms by Building a Registration Form - Step 16
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.
Issue:" You should add the first input after the label text Enter Your First Name: , and include a space after the colon."
ps. I don’t know wtf the compiler is sayin’ while I wrote it right. Did I write the code right? please enlighten me.
<form action='https://register-demo.freecodecamp.org'>
<fieldset>
<label>Enter Your First Name: <input type="text"></label>
<label>Enter Your Last Name: <input type="text"></label>
<label>Enter Your Email: <input type="email"></label>
<label>Create a New Password: <input type="password"></label>
</fieldset>
<fieldset></fieldset>
<fieldset></fieldset>
</form>
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.