How to Launch Universal Login in say Spanish?

Hi Lily,

Thanks for your response. I read through and so far, not sure how much this points me in the right direction. First, to answer your questions -

  1. Using Lock ? Yes and no. I’m using the universal login which I understand contains the lock widget.

*** pls note, the project I’m working from is the quickstart that appears for spa apps when creating a new application in the management console ? ***

  1. Yes we are managing the current language setting within the application

Therefore, the code sample you provided does not seem compatible with the starter project. Again, please refer to the code provided and also note, the ‘auth0Client$’ is constucted as follows -

public auth0Client$ = (from(                                            // Create an observable of Auth0 instance of client
    createAuth0Client({
        domain: environment.domain,
        client_id: environment.clientId,
        redirect_uri: `${window.location.origin}/callback`,
        rememberLastLogin: true
    })
) as Observable<Auth0Client>).pipe(
    shareReplay(1),                                                     // Every subscription receives the same shared value
    catchError(err => throwError(err))
);

In short, do I need to change techniques for launching the universal login so that I can take advantage of the code you posted or, is there a way to instruct ‘loginWithRedirect’ to accept a language parameter ?