mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-08 18:03:52 +08:00
* Add shared two-factor-options component * Add new refactored two-factor-auth component and totp auth componnet behind feature flag * Add yubico yubikey otp shared two-fa component
19 lines
613 B
HTML
19 lines
613 B
HTML
<p bitTypography="body1" class="tw-text-center">{{ "insertYubiKey" | i18n }}</p>
|
|
<picture>
|
|
<source srcset="../../images/yubikey.avif" type="image/avif" />
|
|
<source srcset="../../images/yubikey.webp" type="image/webp" />
|
|
<img src="../../images/yubikey.jpg" class="tw-rounded img-fluid tw-mb-3" alt="" />
|
|
</picture>
|
|
<bit-form-field>
|
|
<bit-label class="tw-sr-only">{{ "verificationCode" | i18n }}</bit-label>
|
|
<input
|
|
type="password"
|
|
bitInput
|
|
appAutofocus
|
|
appInputVerbatim
|
|
autocomplete="new-password"
|
|
[(ngModel)]="tokenValue"
|
|
(input)="token.emit(tokenValue)"
|
|
/>
|
|
</bit-form-field>
|