Use custom email password UI

I am auth0 for the user authenticaiton. To create the web3auth instance, I have used Web3AuthCore and OpenloginAdapter. For login:

await web3auth.connectTo( WALLET_ADAPTERS.OPENLOGIN, { loginProvider: "jwt", extraLoginOptions: { domain: "My_domain", verifierIdField: "sub", } } )

On calling the above code, A popup is getting open. The other option is to redirect which I can configure while creating the web3auth instance using uxMode in Openloginadapter. But there is no other option other than this two. What i want to achieve is, I do not want a pop up. Instead, I want to create my own UI, where I can add the username and password, and after clicking the login button, the user gets authenticated and redirect to my application. Means I do not want redirect or popup. Reminder: i am using auth0.



Originally posted by: KetulCodiste

Check the discussion at: https://github.com/orgs/Web3Auth/discussions/512

As you mentioned user gets authenticated and "redirects" to your application after entering username and password means you can use redirect mode.
In order to use your own UI you can configure auth0 tenant with custom ui.

https://auth0.com/docs/customize/universal-login-pages/universal-login-page-templates



Originally posted by: rinzler99