1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-14 02:08:50 +02:00
This commit is contained in:
Kyle Spearrin 2018-07-21 09:50:50 -04:00
parent c2603c3f53
commit a8f28af2b3
2 changed files with 3 additions and 3 deletions

View File

@ -48,8 +48,8 @@
</div>
<strong class="d-block mb-2">{{'nfcSupport' | i18n}}</strong>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">{{'twoFactorYubikeySupportsNfc' | i18n}}</label>
<input type="checkbox" class="form-check-input" id="nfc" name="Nfc" [(ngModel)]="nfc">
<label class="form-check-label" for="nfc">{{'twoFactorYubikeySupportsNfc' | i18n}}</label>
</div>
<small class="form-text text-muted">{{'twoFactorYubikeySupportsNfcDesc' | i18n}}</small>
</div>

View File

@ -21,7 +21,7 @@ import { TwoFactorBaseComponent } from './two-factor-base.component';
export class TwoFactorYubiKeyComponent extends TwoFactorBaseComponent {
type = TwoFactorProviderType.Yubikey;
keys: any[];
nfc = true;
nfc = false;
formPromise: Promise<any>;
disablePromise: Promise<any>;