Build a Product Landing Page Form submitting problem

Hello All!

I am having trouble passing the test for the submit to that FFC url for my form. Here is my form code:

<form id="form" action="https://www.freecodecamp.com/email-submit">
       *NAME: <label id="name-label" for="name">
    <input id="name" type="text" placeholder="Your Name" required>
        </label>
       <p></p>
        *EMAIL:<label id="email-label" for="email">
  <input id="email" type="email" placeholder="username@bmail.com" required>
     </label>
<p></p>
<label for="textBox">Please write me about your project or ask questions about my services:</label>
</br>
<textarea id="textBox">
</textarea>
<input type="submit" id="submit"></input>
</form>

Any help would be greatly appreciated.
Thanks Mark

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:

Sure, here it is: https://codepen.io/mrbaker1917/pen/eKxpbE

I solved this myself. I forgot to put the name attribute in the email input.

1 Like

Thanks for posting your solution! I was stuck on this as well.