Hi all,
We’ve developed an Angular web application integrated with Auth0 for authentication. We’ve successfully implemented Face ID/biometric authentication during the sign-up process using WebAuthn.
Current Flow
Signup Phase:
- User lands on login page and clicks Sign Up.
- Face ID/biometric setup is done through Auth0.
- User is redirected to the welcome dashboard screen.
Login Phase:
- User enters their email.
- A prompt appears asking the user to choose between Face ID or Password.
- User selects Face ID and is authenticated.
- Redirects to the welcome dashboard screen.
What We Want to Achieve
We want to skip the middle prompt in the login phase:
- As soon as the user enters their email (identifier-first login), the app should automatically trigger Face ID authentication (if previously enrolled) and redirect to the dashboard, without showing the prompt to choose between Face ID and password.
Question
Is it possible to configure Auth0 (Universal Login, WebAuthn) to automatically trigger Face ID after the user enters their email, bypassing the choice prompt? If so, what settings or logic should we apply in Auth0 or in the client?
Thanks in advance!