Update LoginContainer.tsx

This commit is contained in:
Derek 2025-02-10 10:51:38 -06:00 committed by GitHub
parent e344bf95b0
commit b77ff9b202
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,7 +75,6 @@ const LoginContainer = ({ history }: RouteComponentProps) => {
>
{({ isSubmitting, setSubmitting, submitForm }) => (
<LoginFormContainer title={'Login to Continue'} css={tw`w-full flex`}>
<LoginFormContainer title={'Login to the Universe'} css={tw`w-full flex`}>
<Field light type={'text'} label={'Username or Email'} name={'username'} disabled={isSubmitting} />
<div css={tw`mt-6`}>
<Field light type={'password'} label={'Password'} name={'password'} disabled={isSubmitting} />
@ -106,7 +105,6 @@ const LoginContainer = ({ history }: RouteComponentProps) => {
css={tw`text-xs text-neutral-500 tracking-wide no-underline uppercase hover:text-neutral-600`}
>
Forgot password?
Did you mess up your password? Contact Polaris Staff
</Link>
</div>
</LoginFormContainer>