mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
* migrating remove-password component * add loading state --------- Co-authored-by: rr-bw <102181210+rr-bw@users.noreply.github.com>
34 lines
724 B
HTML
34 lines
724 B
HTML
<div *ngIf="loading" class="tw-text-center">
|
|
<i
|
|
class="bwi bwi-spinner bwi-spin bwi-2x tw-text-muted"
|
|
title="{{ 'loading' | i18n }}"
|
|
aria-hidden="true"
|
|
></i>
|
|
<span class="tw-sr-only">{{ "loading" | i18n }}</span>
|
|
</div>
|
|
|
|
<div *ngIf="!loading">
|
|
<p>{{ "convertOrganizationEncryptionDesc" | i18n: organization.name }}</p>
|
|
|
|
<button
|
|
bitButton
|
|
type="button"
|
|
buttonType="primary"
|
|
class="tw-w-full"
|
|
[bitAction]="convert"
|
|
[block]="true"
|
|
>
|
|
{{ "removeMasterPassword" | i18n }}
|
|
</button>
|
|
<button
|
|
bitButton
|
|
type="button"
|
|
buttonType="secondary"
|
|
class="tw-w-full"
|
|
[bitAction]="leave"
|
|
[block]="true"
|
|
>
|
|
{{ "leaveOrganization" | i18n }}
|
|
</button>
|
|
</div>
|