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