mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 13:13:22 +00:00
* Update trust prompt and move to shared km module * Delete organization trust component * Update org trust warning message
24 lines
693 B
HTML
24 lines
693 B
HTML
<bit-dialog
|
|
dialogSize="large"
|
|
[loading]="loading"
|
|
[title]="'trustOrganization' | i18n"
|
|
[subtitle]="params.name"
|
|
>
|
|
<ng-container bitDialogContent>
|
|
<p bitTypography="body1">
|
|
{{ "orgTrustWarning1" | i18n }}
|
|
<br />
|
|
<br />
|
|
{{ "fingerprintPhrase" | i18n }} <code>{{ fingerprint }}</code>
|
|
</p>
|
|
</ng-container>
|
|
<ng-container bitDialogFooter>
|
|
<button buttonType="primary" bitButton bitFormButton type="button" (click)="submit()">
|
|
<span>{{ "trust" | i18n }}</span>
|
|
</button>
|
|
<button bitButton bitFormButton buttonType="secondary" type="button" bitDialogClose>
|
|
{{ "doNotTrust" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-dialog>
|