Skip to content

Commit

Permalink
Merge pull request #654 from lst97/bug/sign-in
Browse files Browse the repository at this point in the history
fix: empty string allowed in sign in
  • Loading branch information
jakerenzella authored Nov 9, 2023
2 parents 86f9e1b + 7e266ac commit 2b784d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/sessions/states/sign-in/sign-in.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ <h1 class="welcome-heading" fxFlexAlign="start">Welcome to {{ externalName.value
>Login via Institution</mat-checkbox
>
}
<button class="w-full" mat-flat-button color="primary" type="form">Sign In</button>
<button class="w-full" mat-flat-button color="primary" type="form" [disabled]="form.invalid">Sign In</button>

</form>
</div>
</div>
Expand Down

0 comments on commit 2b784d8

Please sign in to comment.