Hi,
I’m trying to realise whether there is a way to customise the new universal login that when page loads for some certain applications it sets the focus to the password input instead of username/email input. Ideally a Liquid snippet like the following:
{% if application.id == "myappid" %}
// The customised widget or somehow change the focus to password input
{%- auth0:widget -%}
{% endif %}
// Otherwise load the regular widget
{%- auth0:widget -%}
or not achievable this way? how can I do that?
Thanks.