the error gives additional information which gives you a clue as to what is wrong.
AssertionError: Email input field should be required : expected false to be truthy
So the problem is that your email field is not required at the moment (if you click Submit, you should see a message telling the user to enter a value for that field).
to make an input field required you need to add “required” to the input tag in the html file