Landing page test not passing for unknown reason

Tell us what’s happening:
Hey, I’m doing the third challenge, and I’m passing all of the tests except for the " When I click the #submit element, the email is submitted to a static page" one. I’m pretty sure I have done this correctly so I’m not sure what the problem is. Please help. Here is my code:

Your code so far
form id=“form” action=“APPROPRIATE LINK”
input id=“email” type=“email” required placeholder=“Enter your email here”
input id=“submit” type=“submit” value=“GET STARTED”
/form

<> are ommited because they make everything disappear, at least in the preview on here. also the link is omitted because it’s against the rules to post links here for whatever reason.

entire project: https://codepen.io/Des23/pen/RwRbOBP

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0.

Challenge: Build a Product Landing Page

Link to the challenge:

Look at the error message:

The #email input should have a name attribute : expected false to equal true

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.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Thank you, I have not noticed that. Adding the name attribute fixed the issue.