force to lower on login and sign up
This commit is contained in:
parent
121f4c4449
commit
585faa0f8e
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ final class SignUpAction
|
||||||
return $response->withRedirect('signup');
|
return $response->withRedirect('signup');
|
||||||
}
|
}
|
||||||
|
|
||||||
$username = $body['username'];
|
$username = trim(strtolower($body['username']));
|
||||||
$email = trim(strtolower($body['email']));
|
$email = trim(strtolower($body['email']));
|
||||||
$password = $body['password'];
|
$password = $body['password'];
|
||||||
|
|
||||||
|
|
Reference in a new issue