Hide Input Email

1

Personal the input value of my form that I need to hide for users is: e-mail . It will be an alternate email entry for bot identification

I need to make this entry of e-mail hidden for real users and visible only for bots.

Someone here has already experienced this and can give me a light?

The code is as follows:

<input id="mauticform_input_formpoupopthriveleadssitedominiotemporario_email_alternativo" name="mauticform[email_alternativo]" value="" class="mauticform-input" type="email" />
    
asked by anonymous 05.09.2018 / 16:52

1 answer

1

Use hidden as well

<input type="hidden" name="" value="">

Or it can also be

<input type="email" hidden value="" name="">
    
05.09.2018 / 18:11