mirror of
https://github.com/bitwarden/browser
synced 2026-01-09 03:53:53 +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
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<form [bitSubmit]="submit" [formGroup]="setPinForm">
|
|
<bit-dialog>
|
|
<div class="tw-font-semibold" bitDialogTitle>
|
|
{{ "unlockWithPin" | i18n }}
|
|
</div>
|
|
<div bitDialogContent>
|
|
<p>
|
|
{{ "setYourPinCode" | i18n }}
|
|
</p>
|
|
<bit-form-field>
|
|
<bit-label>{{ "pin" | i18n }}</bit-label>
|
|
<input class="tw-font-mono" bitInput type="password" formControlName="pin" />
|
|
<button type="button" bitIconButton bitSuffix bitPasswordInputToggle></button>
|
|
</bit-form-field>
|
|
<label
|
|
class="tw-flex tw-items-start tw-gap-2"
|
|
*ngIf="showMasterPasswordOnClientRestartOption"
|
|
>
|
|
<input
|
|
class="tw-mt-1"
|
|
type="checkbox"
|
|
bitCheckbox
|
|
formControlName="requireMasterPasswordOnClientRestart"
|
|
/>
|
|
<span>{{ "lockWithMasterPassOnRestart1" | i18n }}</span>
|
|
</label>
|
|
</div>
|
|
<div bitDialogFooter>
|
|
<button type="submit" bitButton bitFormButton buttonType="primary">
|
|
<span>{{ "ok" | i18n }}</span>
|
|
</button>
|
|
<button type="button" bitButton bitFormButton buttonType="secondary" bitDialogClose>
|
|
{{ "cancel" | i18n }}
|
|
</button>
|
|
</div>
|
|
</bit-dialog>
|
|
</form>
|