mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
Consolidates existing SSO components into a single unified component in libs/auth, matching the new design system. This implementation: - Creates a new shared SsoComponent with extracted business logic - Adds feature flag support for unauth-ui-refresh - Updates page styling including new icons and typography - Preserves web client claimed domain logic - Maintains backwards compatibility with legacy views PM-8114 --------- Co-authored-by: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com> Co-authored-by: Jared Snider <jsnider@bitwarden.com>
13 lines
416 B
HTML
13 lines
416 B
HTML
<auth-anon-layout
|
|
[title]="pageTitle"
|
|
[subtitle]="pageSubtitle"
|
|
[icon]="pageIcon"
|
|
[showReadonlyHostname]="showReadonlyHostname"
|
|
[maxWidth]="maxWidth"
|
|
[titleAreaMaxWidth]="titleAreaMaxWidth"
|
|
>
|
|
<router-outlet></router-outlet>
|
|
<router-outlet slot="secondary" name="secondary"></router-outlet>
|
|
<router-outlet slot="environment-selector" name="environment-selector"></router-outlet>
|
|
</auth-anon-layout>
|