mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 12:13:39 +00:00
* Changes for web impact by the policy * Changes to address PR comments * refactoring changes from pr comments * Resolve the complex conditionals comment * resolve the complex conditionals comment * Resolve the pr comments on user layout * revert on wanted change * Refactor and move logic and template into its own component * Move to a folder owned by the Billing team
33 lines
1.6 KiB
HTML
33 lines
1.6 KiB
HTML
<app-layout>
|
|
<app-side-nav>
|
|
<bit-nav-logo [openIcon]="logo" route="." [label]="'passwordManager' | i18n"></bit-nav-logo>
|
|
|
|
<bit-nav-item icon="bwi-collection" [text]="'vaults' | i18n" route="vault"></bit-nav-item>
|
|
<bit-nav-item icon="bwi-send" [text]="'send' | i18n" route="sends"></bit-nav-item>
|
|
<bit-nav-group icon="bwi-wrench" [text]="'tools' | i18n" route="tools">
|
|
<bit-nav-item [text]="'generator' | i18n" route="tools/generator"></bit-nav-item>
|
|
<bit-nav-item [text]="'importData' | i18n" route="tools/import"></bit-nav-item>
|
|
<bit-nav-item [text]="'exportVault' | i18n" route="tools/export"></bit-nav-item>
|
|
</bit-nav-group>
|
|
<bit-nav-item icon="bwi-sliders" [text]="'reports' | i18n" route="reports"></bit-nav-item>
|
|
<bit-nav-group icon="bwi-cog" [text]="'settings' | i18n" route="settings">
|
|
<bit-nav-item [text]="'myAccount' | i18n" route="settings/account"></bit-nav-item>
|
|
<bit-nav-item [text]="'security' | i18n" route="settings/security"></bit-nav-item>
|
|
<bit-nav-item [text]="'preferences' | i18n" route="settings/preferences"></bit-nav-item>
|
|
<bit-nav-item
|
|
[text]="'subscription' | i18n"
|
|
route="settings/subscription"
|
|
*ngIf="showSubscription$ | async"
|
|
></bit-nav-item>
|
|
<bit-nav-item [text]="'domainRules' | i18n" route="settings/domain-rules"></bit-nav-item>
|
|
<bit-nav-item
|
|
[text]="'emergencyAccess' | i18n"
|
|
route="settings/emergency-access"
|
|
></bit-nav-item>
|
|
<billing-free-families-nav-item></billing-free-families-nav-item>
|
|
</bit-nav-group>
|
|
</app-side-nav>
|
|
|
|
<router-outlet></router-outlet>
|
|
</app-layout>
|