Your buttonâs type attribute should have a value of âsubmitâ : expected undefined to equal âsubmitâ
AssertionError: Your buttonâs type attribute should have a value of âsubmitâ
You may also need to give it an ID of âsubmitâ so that the test script can find it
Good Luck!
PS I found that by clicking on the âTestsâ button to find the error on your pen
Kickflips is right, it is super helpful to look at the error codes in the âTestsâ button. In this particular case I was able to get the test to pass in your pen by moving the id=âsubmitâ from your div surrounding the button to the actual button itself like this:
Thank you Miguel,
I appreciate the assistance. I kinda figured it was something simple that I was not seeing (ran into a lot of that doing these projects, amazing how a semi-colon or space in the wrong spot can mess things up).