I want the “email?” question in my typeform to validate that the respondents email is using the correct format, in google forms you can use
- regular expression matches: [a-zA-Z0-9_\.\+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-\.]+
and then set a custom error message like “Please provide a valid email address!”.
In type form it seems I can kind of set this logic, but then the only action is a “goto”. I don’t want the user to go anywhere else, I just want an error message saying “Please provide a valid email address!” before they can move on, how do I do this?
thank you