Commit 6a97c456 by tabarra Committed by GitHub

LoginPage: Removed auto-capitalization from the login form (#28716)

* Removed auto-capitalization from the login form

On mobile browsers, by default most keyboards will auto capitalize the first letter of the email/username, which is case sensitive.  
This PR fixes that.

* Fixed autoCapitalize react keyword
parent e93cb066
......@@ -33,6 +33,7 @@ export const LoginForm: FC<Props> = ({ children, onSubmit, isLoggingIn, password
<Input
autoFocus
name="user"
autoCapitalize="none"
ref={register({ required: 'Email or username is required' })}
placeholder={loginHint}
aria-label={selectors.pages.Login.username}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment