@if (twoStep() !== "disabled") {
Use two-step enrollment with the privacyIDEA Authenticator App.
}
Generate the OTP key on the server and show a QR code to scan.
@if (!this.authService.checkForceServerGenerateOTPKey("totp")) {
OTP Key
@if (otpKeyFormControl.hasError("required")) {
OTP key is required
}
@if (otpKeyFormControl.hasError("minlength")) {
OTP key must be at least 16 characters
}
}
OTP length
@for (len of otpLengthOptions; track len) {
{{ len }}
}
OTP length is requiredSome Authenticator Apps only support an OTP length of 6.Hash algorithm
@for (alg of hashAlgorithmOptions; track alg.value) {
{{ alg.viewValue }}
}
Hash algorithm is requiredSome Authenticator Apps only support the SHA1 algorithm.
Timestep
@for (step of timeStepOptions; track step) {
{{ step }}
}
Timestep is required