(event)
| 9 | form.addEventListener('submit', handleForm); |
| 10 | |
| 11 | function handleForm(event){ |
| 12 | event.preventDefault(); |
| 13 | verifyInputs(); |
| 14 | } |
| 15 | |
| 16 | function verifyInputs(){ |
| 17 | //get the user inputted values |
nothing calls this directly
no test coverage detected