ActiveManage offers two login page modes, controlling the order in which the user is asked for their credentials. The choice affects both user experience and the information surface attackers can probe.
Standard Mode
The traditional login form: email/username and password on the same page. The user types both and submits.
- Pros: Familiar; password managers autofill cleanly; one HTTP request per login attempt.
- Cons: Exposes whether an email exists when password fails (“account locked” vs “wrong password”). Cannot dynamically show different second-factor prompts based on the user.
Emailcheck Mode
The login is multi-step. Step 1 asks only for the email. The next screen shows the password field — and the available authentication methods customised to that specific user (e.g. “Sign in with Microsoft” for SSO-enabled users, “Use passkey” for users who've enrolled one).
- Pros: Hides which auth methods are configured per user from random visitors; works elegantly with SSO redirection (Microsoft users skip the password step entirely).
- Cons: More steps; some password managers struggle to autofill cleanly.
Worked Examples
- Internal-only app: Standard mode is fine — users are known and the threat model doesn't care about email enumeration.
- Public SaaS: Emailcheck — different customers use different IdPs, so the second step routes each to their provider.
- Mixed B2B/B2C: Emailcheck — staff get SSO automatically while customers see a password field.
- White-label tenant: Emailcheck — the tenant's brand appears only after the email is recognised, keeping the public login page neutral.