Authentication Flow Diagrams
Authentication Flow Diagrams
Visual representation of authentication flows for each mode.
Password-Only Authentication
sequenceDiagram
participant User
participant Browser
participant IDS as Identity Server
participant DB as Database
User->>Browser: Enter email + password
Browser->>IDS: POST /interaction/:uid/login
IDS->>DB: Validate credentials
DB-