After I made {allowForgotPassword:true} lock widget started to shows the following screen.
This is nice, ok. But after I login using this button and logout again, I redirected back to the same screen but now it looks like:
The buttons are disappeared!
Here is my lock configuration:
let lock = new Auth0Lock(AUTH_CONFIG.clientId, AUTH_CONFIG.domain, {
autoclose: true,
sso: true,
container: 'login-container',
allowedConnections: [AUTH_CONFIG.connectionName],
socialButtonStyle: 'big',
allowForgotPassword: true,
configurationBaseUrl: 'https://cdn.eu.auth0.com',
auth: {
redirectUrl: AUTH_CONFIG.callbackUrl,
responseType: 'token id_token',
audience: AUTH_CONFIG.apiUrl,
params: {
scope: 'openid profile name email'
}
},
theme: {
logo: 'http://i.dailymail.co.uk/i/pix/2013/04/06/article-0-190D8141000005DC-583_634x629.jpg',
primaryColor: '#2A23D7'
},
languageDictionary: {
signUpTerms: "I agree to the <a href='/terms'>terms of service</a></a>."
},
mustAcceptTerms: true
});
Any help?