Use custom email password UI #512
KetulCodiste
announced in
Help
Replies: 1 comment 3 replies
-
As you mentioned user gets authenticated and "redirects" to your application after entering username and password means you can use redirect mode. https://auth0.com/docs/customize/universal-login-pages/universal-login-page-templates |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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.
Beta Was this translation helpful? Give feedback.
All reactions