mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
* Add shared duo component * Fix duo import * Fix wrong i18n service DI in duo desktop component * Remove duo v2 * Add override to functions * Remove web duo implementation * Update apps/browser/src/auth/popup/two-factor-auth-duo.component.ts Co-authored-by: Ike <137194738+ike-kottlowski@users.noreply.github.com> * Update apps/desktop/src/auth/two-factor-auth-duo.component.ts Co-authored-by: Ike <137194738+ike-kottlowski@users.noreply.github.com> * Update libs/angular/src/auth/components/two-factor-auth/two-factor-auth-duo.component.ts Co-authored-by: Ike <137194738+ike-kottlowski@users.noreply.github.com> * Fix missing service on duo components * Fix missing service on base duo auth component * Fix constructor super calls in duo auth component * Fix duo auth components incorrectly extending base class --------- Co-authored-by: Ike <137194738+ike-kottlowski@users.noreply.github.com>
80 lines
2.7 KiB
HTML
80 lines
2.7 KiB
HTML
<form [bitSubmit]="submitForm" [formGroup]="formGroup" autocomplete="off">
|
|
<div class="tw-min-w-96">
|
|
<app-two-factor-auth-email
|
|
(token)="token = $event"
|
|
*ngIf="selectedProviderType === providerType.Email"
|
|
/>
|
|
<app-two-factor-auth-authenticator
|
|
(token)="token = $event"
|
|
*ngIf="selectedProviderType === providerType.Authenticator"
|
|
/>
|
|
<app-two-factor-auth-yubikey
|
|
(token)="token = $event"
|
|
*ngIf="selectedProviderType === providerType.Yubikey"
|
|
/>
|
|
<app-two-factor-auth-webauthn
|
|
(token)="token = $event; submitForm()"
|
|
*ngIf="selectedProviderType === providerType.WebAuthn"
|
|
/>
|
|
<app-two-factor-auth-duo
|
|
(token)="token = $event; submitForm()"
|
|
[providerData]="providerData"
|
|
*ngIf="
|
|
selectedProviderType === providerType.OrganizationDuo ||
|
|
selectedProviderType === providerType.Duo
|
|
"
|
|
#duoComponent
|
|
/>
|
|
<bit-form-control *ngIf="selectedProviderType != null">
|
|
<bit-label>{{ "rememberMe" | i18n }}</bit-label>
|
|
<input type="checkbox" bitCheckbox formControlName="remember" />
|
|
</bit-form-control>
|
|
<ng-container *ngIf="selectedProviderType == null">
|
|
<p bitTypography="body1">{{ "noTwoStepProviders" | i18n }}</p>
|
|
<p bitTypography="body1">{{ "noTwoStepProviders2" | i18n }}</p>
|
|
</ng-container>
|
|
<hr />
|
|
<div [hidden]="!showCaptcha()">
|
|
<iframe id="hcaptcha_iframe" height="80" sandbox="allow-scripts allow-same-origin"></iframe>
|
|
</div>
|
|
<!-- <!-- Buttons -->
|
|
<div class="tw-flex tw-flex-col tw-space-y-2.5 tw-mb-3">
|
|
<button
|
|
type="submit"
|
|
buttonType="primary"
|
|
bitButton
|
|
bitFormButton
|
|
*ngIf="
|
|
selectedProviderType != null &&
|
|
selectedProviderType !== providerType.WebAuthn &&
|
|
selectedProviderType !== providerType.Duo &&
|
|
selectedProviderType !== providerType.OrganizationDuo
|
|
"
|
|
>
|
|
<span> <i class="bwi bwi-sign-in" aria-hidden="true"></i> {{ actionButtonText }} </span>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
buttonType="primary"
|
|
bitButton
|
|
(click)="launchDuo()"
|
|
*ngIf="
|
|
selectedProviderType === providerType.Duo ||
|
|
selectedProviderType === providerType.OrganizationDuo
|
|
"
|
|
>
|
|
<span> <i class="bwi bwi-sign-in" aria-hidden="true"></i> {{ "launchDuo" | i18n }}</span>
|
|
</button>
|
|
|
|
<a routerLink="/login" bitButton buttonType="secondary">
|
|
{{ "cancel" | i18n }}
|
|
</a>
|
|
</div>
|
|
<div class="text-center">
|
|
<a bitLink href="#" appStopClick (click)="selectOtherTwofactorMethod()">{{
|
|
"useAnotherTwoStepMethod" | i18n
|
|
}}</a>
|
|
</div>
|
|
</div>
|
|
</form>
|