All files / src/app/shared/components/login/login-form login-form.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 234x                                            
<ish-error-message [error]="loginError$ | async" [toast]="false" />
 
<form [formGroup]="form" ishFormSubmit #loginForm="ngForm" (ngSubmit)="loginUser()" class="form-horizontal" novalidate>
  <formly-form [form]="form" [fields]="fields" />
 
  <div class="row form-group">
    <div [ngClass]="signInClass || 'offset-md-3 col-md-auto'">
      <button
        type="submit"
        value="Login"
        name="login"
        class="btn btn-primary"
        [disabled]="form.invalid && loginForm.submitted"
      >
        {{ 'account.signin.button.label' | translate }}
      </button>
    </div>
    <div [ngClass]="forgotPasswordClass || 'col-md-auto ps-md-0'">
      <a class="btn btn-link" [routerLink]="'/forgotPassword'">{{ 'account.send_password.heading' | translate }}</a>
    </div>
  </div>
</form>