I have 2 different users coming to the “change-password” page in auth0:
Ones that are changing the first password that the system auto-generated for them. They never logged into the system before.
And ones that manually requested to change their password because they indeed forgot it.
I want these 2 to have a bit different experience. e.g. the first ones should see the title “Create your password”, while the second ones will see the title “Change your password”
How can this be achieved?
I will mention that today I generate the first email from the system using the API, so the best idea I have is to manually add query param saying is_first_login=1 and then in the template use that to change the design. But this feels hacky.