Button with ID of Submit

I’m creating a form as part of the Web Design curriculum but I’m having trouble with the last User Story. That being the following:

User Story #16: Inside the form element, I am presented with a button with id="submit" to submit all my inputs.

For whatever reason, I can’t seem to pass this test.

A link to my CodePen that I’m referring to

  1. ids must be unique, you have id="submit" on the button container div. That needs to be removed both to be valid HTML and not confuse the test.

  2. You have the type attribute twice and you have an input element identifier on the button element.

That have solved the problem, thank you very much! I gotcha, no need for an input identifier as it’s a button.