Hi!
I’m currently trying to build a Product Landing Page as my third Responsive Web Design project.
For now, I’m just building the page with random placeholders, but I got stuck on the submit button for the email address.
The tests keep failing 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).)
I’m not quite sure what exactly the issue is. I’ve been trying different things I found on google and all of them have failed. Any idea what’s causing this?
Here’s the code I have so far:
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input type="email" id="email" placeholder="Enter your email" required>
<input type="submit" id="submit">
</form>