mirror of
https://github.com/bitwarden/browser
synced 2025-12-25 12:43:36 +00:00
* PM-4945 Update Two Factor verify dialog * PM-4945 Addressed review comments * PM-4945 Removed legacy User verification component and used new one
24 lines
763 B
HTML
24 lines
763 B
HTML
<form [formGroup]="formGroup" [bitSubmit]="submit">
|
|
<bit-dialog dialogSize="default">
|
|
<span bitDialogTitle>
|
|
{{ "twoStepLogin" | i18n }}
|
|
<small class="tw-text-muted">{{ dialogTitle }}</small>
|
|
</span>
|
|
<ng-container bitDialogContent>
|
|
<app-user-verification-form-input
|
|
formControlName="secret"
|
|
ngDefaultControl
|
|
name="secret"
|
|
></app-user-verification-form-input>
|
|
</ng-container>
|
|
<ng-container bitDialogFooter>
|
|
<button bitButton bitFormButton type="submit" buttonType="primary">
|
|
{{ "continue" | i18n }}
|
|
</button>
|
|
<button bitButton type="button" buttonType="secondary" bitDialogClose>
|
|
{{ "close" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-dialog>
|
|
</form>
|