Is it possible to display the ‘Back to Application’ button when a user has successfully changed their password via Universal Login?
If i enable Customize Password Reset Page to get access to the HTML how do I send connection
and clientID
to Auth0ChangePassword
?
I assume it is something in the HTML but I do not know how to get the parameters for conenction or clientID but do not even know if I can:
new Auth0ChangePassword({
container: "change-password-widget-container", // required
email: "{{email | escape}}", // DO NOT CHANGE THIS
csrf_token: "{{csrf_token}}", // DO NOT CHANGE THIS
ticket: "{{ticket}}", // DO NOT CHANGE THIS
password_policy: "{{password_policy}}", // DO NOT CHANGE THIS
password_complexity_options: {{password_complexity_options}}, // DO NOT CHANGE THIS
theme: {
icon: "{{tenant.picture_url | default: '//cdn.auth0.com/styleguide/1.0.0/img/badge.png'}}",
primaryColor: "{{tenant.colors.primary | default: '#ea5323'}}"
},
dict: {
}
});
Thanks!