-
Notifications
You must be signed in to change notification settings - Fork 76
Open
Labels
Description
Describe your motivation
Support passwordless(OTT) login in LoginForm by offering an API to remove the password input. In Java I would imagine loginForm.setPasswordless(Boolean) calling this method will disable/hide the password input.
Describe the solution you'd like
An API to to disable password input in LoginForm
Describe alternatives you've considered
It's not clear to me if it's possible to do it from Java, it seems all the code is in JS.
Additional context
Is there anything else you can add about the proposal?
I'm trying to set up one-time-token login by using Spring security. setAction can be used to change the POST endpoint to /ott/generate, but the password input is required and I cannot submit without a valid value.