Product Landing page submit email help

Link to codepen: https://codepen.io/zukululushikufu/pen/oNjLxBW?editors=1100. It’s still a work in progress and I haven’t finished styling yet.

I’m failing the test for " User Story #12: When I click the #submit element, the email is submitted to a static page (use this mock URL: https://www.freecodecamp.com/email-submit)." even though I think my code is correct. Can anyone help me out?

<form id="form" action="https://www.freecodecamp.com/email-submit">
      <label for="email">For more information please enter your email address here:</label>
      <input type="email" id="email" placeholder="example@example.com">
      
      <input id="submit" type="submit" value="Submit">
    </form>

If you guys need the link to my codepen instead just let me know.

EDIT: I’ve even tried to slap on a formaction=“https://www.freecodecamp.com/email-submit” to my submit input but that didn’t work either.

Hello there.

We do need the link to your CodePen. Thanks.

I’ve added the link to the post. Thanks for letting me know!

Read the failing message. It says;
The #email input should have a name attribute : expected false to equal true
You don’t have a name attribute

Ohhhh ok. Thanks man, managed to fix it.

Thank You Very Much @Roma I also get help from your comment.
Thanks