Authentication & invitations
Sign-in, password recovery, and accepting user invitations.
Sign in
Route: /auth/login
- Open the login screen from your deployment URL.
- Enter email/username and password using Login form validation rules.
- Successful authentication stores session tokens and redirects into
/dashboardper router logic.
Troubleshooting: Use Forgot password when available on the form.
Forgot password
Route: /auth/forget-password
- Submit the email associated with your tenant account.
- Follow instructions emailed by the platform.
Reset password
Route: /auth/reset-password?token=…
- Open the link from the reset email (token query parameter required).
- Choose a new password meeting policy rules shown on the page.
Link sent confirmation
Route: /auth/link-sent?email=…
Informational screen confirming that reset instructions were dispatched.
Accept invitation
Route: /auth/invitations/$invitationId
- Use the invitation URL issued by an administrator —
invitationIdcarries the invitation token. - The page loads invitation metadata using
api.Invitations.byTokenand pre-fills email when valid. - Complete remaining fields (password and confirmations per schema) and submit to activate membership.
- Invalid tokens redirect back to
/auth/login.
Troubleshooting
- Immediate redirect to login: Token expired or invitation revoked — request a fresh invitation from your administrator (User management).