2018-04-06 17:48:45 +02:00
|
|
|
<div class="tab-page">
|
|
|
|
<router-outlet></router-outlet>
|
2021-02-02 18:43:31 +01:00
|
|
|
<nav class="tabs">
|
2018-04-06 17:48:45 +02:00
|
|
|
<ul>
|
2022-04-20 06:25:44 +02:00
|
|
|
<li routerLinkActive="active" #rlaCurrentTab="routerLinkActive" *ngIf="showCurrentTab">
|
|
|
|
<button
|
2022-07-25 12:43:10 +02:00
|
|
|
type="button"
|
2022-04-20 06:25:44 +02:00
|
|
|
routerLink="current"
|
|
|
|
appA11yTitle="{{ 'currentTab' | i18n }}"
|
|
|
|
[attr.aria-pressed]="rlaCurrentTab.isActive"
|
|
|
|
>
|
2022-01-28 11:53:06 +01:00
|
|
|
<i class="bwi bwi-folder-closed-f bwi-2x" aria-hidden="true"></i>{{ "tab" | i18n }}
|
2022-04-20 06:25:44 +02:00
|
|
|
</button>
|
2018-04-06 17:48:45 +02:00
|
|
|
</li>
|
2022-04-20 06:25:44 +02:00
|
|
|
<li routerLinkActive="active" #rlaMyVault="routerLinkActive">
|
|
|
|
<button
|
2022-07-25 12:43:10 +02:00
|
|
|
type="button"
|
2022-04-20 06:25:44 +02:00
|
|
|
routerLink="vault"
|
|
|
|
appA11yTitle="{{ 'myVault' | i18n }}"
|
|
|
|
[attr.aria-pressed]="rlaMyVault.isActive"
|
|
|
|
>
|
2022-05-13 19:55:11 +02:00
|
|
|
<i class="bwi bwi-lock-f bwi-2x" aria-hidden="true"></i>{{ "vault" | i18n }}
|
2022-04-20 06:25:44 +02:00
|
|
|
</button>
|
2018-04-06 17:48:45 +02:00
|
|
|
</li>
|
2022-04-20 06:25:44 +02:00
|
|
|
<li routerLinkActive="active" #rlaSend="routerLinkActive">
|
|
|
|
<button
|
2022-07-25 12:43:10 +02:00
|
|
|
type="button"
|
2022-04-20 06:25:44 +02:00
|
|
|
routerLink="send"
|
|
|
|
appA11yTitle="{{ 'send' | i18n }}"
|
|
|
|
[attr.aria-pressed]="rlaSend.isActive"
|
|
|
|
>
|
2022-01-28 11:53:06 +01:00
|
|
|
<i class="bwi bwi-send-f bwi-2x" aria-hidden="true"></i>{{ "send" | i18n }}
|
2022-04-20 06:25:44 +02:00
|
|
|
</button>
|
2021-02-02 18:43:31 +01:00
|
|
|
</li>
|
2022-04-20 06:25:44 +02:00
|
|
|
<li routerLinkActive="active" #rlaGenerator="routerLinkActive">
|
|
|
|
<button
|
2022-07-25 12:43:10 +02:00
|
|
|
type="button"
|
2022-04-20 06:25:44 +02:00
|
|
|
routerLink="generator"
|
|
|
|
appA11yTitle="{{ 'passGen' | i18n }}"
|
|
|
|
[attr.aria-pressed]="rlaGenerator.isActive"
|
|
|
|
>
|
2022-02-03 17:25:38 +01:00
|
|
|
<i class="bwi bwi-generate-f bwi-2x" aria-hidden="true"></i>{{ "generator" | i18n }}
|
2022-04-20 06:25:44 +02:00
|
|
|
</button>
|
2018-04-06 17:48:45 +02:00
|
|
|
</li>
|
2022-04-20 06:25:44 +02:00
|
|
|
<li routerLinkActive="active" #rlaSettings="routerLinkActive">
|
|
|
|
<button
|
2022-07-25 12:43:10 +02:00
|
|
|
type="button"
|
2022-04-20 06:25:44 +02:00
|
|
|
routerLink="settings"
|
|
|
|
appA11yTitle="{{ 'settings' | i18n }}"
|
|
|
|
[attr.aria-pressed]="rlaSettings.isActive"
|
|
|
|
>
|
2022-01-28 11:53:06 +01:00
|
|
|
<i class="bwi bwi-cog-f bwi-2x" aria-hidden="true"></i>{{ "settings" | i18n }}
|
2022-04-20 06:25:44 +02:00
|
|
|
</button>
|
2018-04-06 17:48:45 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|