mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
* Implement account security settings v2 * Increase await dialog delay to 500 msec * Update messages * Replace platformservice with biometricsservice * Cleanup * Cleanup * Fix account security component according to feedback * Re-add old message * Re-add old error message * Fix minimum timeout message * Fix screen-reader on custom timeout * Remove debugging configurations * Fix incorrectly changed message * Remove custom vault timeout text * Restore vaultTimeoutPolicyInEffect i18n message in web * Change text to use vaultTimeoutPolicyInEffect1 * Fix tests
26 lines
751 B
HTML
26 lines
751 B
HTML
<bit-simple-dialog>
|
|
<i bitDialogIcon class="bwi bwi-info-circle tw-text-3xl" aria-hidden="true"></i>
|
|
<span bitDialogTitle
|
|
><strong>{{ "yourAccountsFingerprint" | i18n }}:</strong></span
|
|
>
|
|
<span bitDialogContent>
|
|
{{ data.fingerprint.join("-") }}
|
|
</span>
|
|
<ng-container bitDialogFooter>
|
|
<a
|
|
bitButton
|
|
href="https://bitwarden.com/help/fingerprint-phrase/"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
buttonType="primary"
|
|
bitDialogClose
|
|
>
|
|
{{ "learnMore" | i18n }}
|
|
<i class="bwi bwi-external-link bwi-fw" aria-hidden="true"></i>
|
|
</a>
|
|
<button bitButton type="button" buttonType="secondary" bitDialogClose>
|
|
{{ "close" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-simple-dialog>
|