Changes to handlesubmit
This commit is contained in:
parent
e7e79ced13
commit
b999e47f94
1 changed files with 4 additions and 3 deletions
|
@ -15,9 +15,10 @@ function LoginPage(props: {
|
|||
and if so, redirect to correct page */
|
||||
function handleSubmit(event: FormEvent<HTMLFormElement>): void {
|
||||
event.preventDefault();
|
||||
props.setAuthority((prevAuth) => {
|
||||
prevAuth = LoginCheck({ username: username, password: password });
|
||||
return prevAuth;
|
||||
LoginCheck({
|
||||
username: username,
|
||||
password: password,
|
||||
setAuthority: props.setAuthority,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue