Product landing page user story #12

Having some trouble getting the submit button to work.

No idea what I could be doing wrong.

https://codepen.io/EdwardCerverizzo/pen/rNBzbYY?editors=1100

Thanks in advance

Your email field has no name attribute. So it is not submitted.

I think this problem is linked to the fact you didn’t put the method… submit the form using the “post” method (method=“post”)
try this and see if he didn’t work out!

 <form id="form" name="form" action="https://www.freecodecamp.com/email-submit" method="post">
      <input id="email" type="email" placeholder="Enter email">
      <input id="submit" type="submit" value="Get Started">
    </form>

It works! Thank you so much!