irisa-cap-captcha
v20.0.2
Published
<div class="form-group d-flex align-items-center w-100 mt-20px mb-36px p-0"> <cap-captcha #capCaptcha dir="ltr" class="test" widgetId="cap-login" [(token)]="model.captchaToken"> </cap-captcha
Downloads
472
Readme
model: AccountLoginModel { username?: string; password?: string; captchaToken?: string; }
@ViewChild('capCaptcha') capCaptcha: CapCaptchaComponent;
this.loginState.Wait(); this.service.login(this.model) .pipe( handleErrors(this.ngform.form), recordState(this.loginState) ) .subscribe({ next: response => this.afterLogin(response, this.returnUrl), error: () => this.capCaptcha?.reset() });
