Hello,
How can I validate and email address in the form element?
Because when I choose a field and set it to email, I can put anything on it, resulting in getting submission with invalid email addresses.
Thanks in advance,
Vasco
Hello,
How can I validate and email address in the form element?
Because when I choose a field and set it to email, I can put anything on it, resulting in getting submission with invalid email addresses.
Thanks in advance,
Vasco
Hi Imaginering,
On my side, email form inputs correctly check for the presence of the @ symbol and the existence of a text following it. This is possible thanks to the type “email” correctly added to the input tag by Bricks when the field is set to email:
<input type="email">
It helps browser to interpret the html tag.
Have a great day,
Thomas