[ad_1]
To get autocomplete to work on the email field I had to add this to the Custom HTML script in advanced.
It selects the input field with the name: ‘signals_email’ and then adds an attribute: autocomplete=’email’
<script>
const emailInput = document.querySelector('input[name="signals_email"]');
emailInput.setAttribute('autocomplete', 'email');
</script>
