mirror of
https://github.com/bitwarden/browser
synced 2026-02-09 05:00:10 +00:00
20 lines
555 B
HTML
20 lines
555 B
HTML
@if (initializing) {
|
|
<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>
|
|
} @else {
|
|
<auth-input-password
|
|
[flow]="inputPasswordFlow"
|
|
[email]="email"
|
|
[userId]="userId"
|
|
[masterPasswordPolicyOptions]="masterPasswordPolicyOptions"
|
|
[inlineButtons]="true"
|
|
[primaryButtonText]="{ key: 'changeMasterPassword' }"
|
|
(onPasswordFormSubmit)="handlePasswordFormSubmit($event)"
|
|
>
|
|
</auth-input-password>
|
|
}
|