Compare commits

..

No commits in common. "develop" and "master" have entirely different histories.

3 changed files with 1805 additions and 1817 deletions

File diff suppressed because it is too large Load diff

View file

@ -30,10 +30,9 @@
<app-alert-message>Username or password is invalid!</app-alert-message>
</app-alert>
<button type="submit" class="btn btn-primary float-right" [disabled]="!isValidForm()">Login</button>
<button type="submit" class="btn btn-primary float-right" [disabled]="!loginForm.valid">Login</button>
</form>
</div>
</div>
</div>
</div>
</div>

View file

@ -44,8 +44,4 @@ export class LoginComponent implements OnInit {
this.loginError = true;
}
}
public isValidForm() {
return true;
}
}