Problem statement
We see the Auth0 badge logo under the change password prompt despite being on a paid tenant.
Steps to reproduce
Generate a password reset ticket and set Universal Login to use Classic.
Follow the ticket link and saw the Auth0 badge:
Solution
To remove the badge when using Classic Universal Login (Lock SDK), paid tenants can add the “showBadge” option and set this to false in the theme object of the Password Reset widget:
theme: {
icon: "{{tenant.picture_url | default: '//cdn.auth0.com/styleguide/1.0.0/img/badge.png'}}",
primaryColor: "{{tenant.colors.primary | default: '#ea5323'}}",
showBadge: false
},