mirror of
https://github.com/bitwarden/browser
synced 2025-12-29 22:53:44 +00:00
21 lines
712 B
HTML
21 lines
712 B
HTML
<!-- Please remove this disable statement when editing this file! -->
|
|
<!-- eslint-disable @angular-eslint/template/button-has-type -->
|
|
<app-change-kdf *ngIf="showChangeKdf"></app-change-kdf>
|
|
<div
|
|
[ngClass]="{ 'tabbed-header': !showChangeKdf, 'secondary-header': showChangeKdf }"
|
|
class="border-0 mb-0"
|
|
>
|
|
<h1>{{ "apiKey" | i18n }}</h1>
|
|
</div>
|
|
<p>
|
|
{{ "userApiKeyDesc" | i18n }}
|
|
</p>
|
|
<button bitButton buttonType="secondary" (click)="viewUserApiKey()">
|
|
{{ "viewApiKey" | i18n }}
|
|
</button>
|
|
<button bitButton buttonType="secondary" (click)="rotateUserApiKey()">
|
|
{{ "rotateApiKey" | i18n }}
|
|
</button>
|
|
<ng-template #viewUserApiKeyTemplate></ng-template>
|
|
<ng-template #rotateUserApiKeyTemplate></ng-template>
|