Is there a way to test the form input against a list of invalid/fake names? Like:
First Name input: ‘Test’, ‘Dunno’, ‘NoWay’
Email: ‘[email protected]’, ‘[email protected]’
(the domain is not a problem, I can check it in the back end)
Currently I’m only testing if the fields are:
- Name: blank (required attribute)
<input type="text" required />
- Email: blank (required attribute), valid format (using the type=”email”), and checking the domain in the back end
<input type="email" required />