diff --git a/packages/web/components/templates/ProfileLayout.tsx b/packages/web/components/templates/ProfileLayout.tsx index 8dffb49eb..af9fd04e9 100644 --- a/packages/web/components/templates/ProfileLayout.tsx +++ b/packages/web/components/templates/ProfileLayout.tsx @@ -14,7 +14,6 @@ export function ProfileLayout(props: ProfileLayoutProps): JSX.Element { alignment="center" distribution="center" css={{ - // bg: '$omnivoreYellow', height: '100vh', bg: '$omnivoreYellow', }} diff --git a/packages/web/components/templates/auth/EmailForgotPassword.tsx b/packages/web/components/templates/auth/EmailForgotPassword.tsx index 67ff053ad..760c43c43 100644 --- a/packages/web/components/templates/auth/EmailForgotPassword.tsx +++ b/packages/web/components/templates/auth/EmailForgotPassword.tsx @@ -15,8 +15,10 @@ const ForgotPasswordForm = (): JSX.Element => { return ( - - Email + + + Email + { value={email} placeholder="Email" autoFocus={true} - css={{ bg: 'white', color: 'black' }} + css={{ backgroundColor: '#2A2A2A', color: 'white', border: 'unset' }} onChange={(e) => { e.preventDefault() setEmail(e.target.value) }} /> - + ) } @@ -58,16 +60,16 @@ export function EmailForgotPassword(): JSX.Element { alignment="center" css={{ padding: '16px', - background: 'white', minWidth: '340px', width: '70vw', maxWidth: '576px', borderRadius: '8px', - border: '1px solid #3D3D3D', - boxShadow: '#B1B1B1 9px 9px 9px -9px', + background: '#343434', + border: '1px solid #6A6968', + boxShadow: '0px 4px 4px 0px rgba(0, 0, 0, 0.15)', }} > - + Reset your password @@ -93,7 +95,7 @@ export function EmailForgotPassword(): JSX.Element { )} {errorMessage && {errorMessage}} - - @@ -238,10 +248,7 @@ export function EmailSignup(): JSX.Element { > Already have an account?{' '} - + Login instead diff --git a/packages/web/components/templates/auth/ResetSent.tsx b/packages/web/components/templates/auth/ResetSent.tsx index 3f0f2776a..77ce76845 100644 --- a/packages/web/components/templates/auth/ResetSent.tsx +++ b/packages/web/components/templates/auth/ResetSent.tsx @@ -9,7 +9,8 @@ export function ResetSent(): JSX.Element { css={{ width: '100vw', height: '100vh', - bg: '$omnivoreYellow', + color: '#898989', + background: '#2A2A2A', overflowY: 'clip', }} > @@ -17,11 +18,11 @@ export function ResetSent(): JSX.Element { css={{ width: '100%', margin: '40px', - color: '$omnivoreGray', + color: '#898989', '@xl': { margin: '138px' }, }} > -

Reset email sent

+

Reset email sent

If there is an account associated with the email specified we sent a password reset link. Click the link to reset your password. You may diff --git a/packages/web/components/templates/auth/VerifyEmail.tsx b/packages/web/components/templates/auth/VerifyEmail.tsx index 7eedf9b60..32b5a2441 100644 --- a/packages/web/components/templates/auth/VerifyEmail.tsx +++ b/packages/web/components/templates/auth/VerifyEmail.tsx @@ -9,7 +9,8 @@ export function VerifyEmail(): JSX.Element { css={{ width: '100vw', height: '100vh', - bg: '$omnivoreYellow', + color: '#898989', + background: '#2A2A2A', overflowY: 'clip', }} > @@ -17,12 +18,11 @@ export function VerifyEmail(): JSX.Element { css={{ width: '100%', margin: '40px', - color: '$omnivoreGray', '@xl': { margin: '138px' }, }} > -

Verify your email address

- +

Verify your email address

+ We sent a verification link to the email you provided. Click the link to verify your email. You may need to check your spam folder. diff --git a/packages/web/pages/login.tsx b/packages/web/pages/login.tsx index 39462772e..78c957f86 100644 --- a/packages/web/pages/login.tsx +++ b/packages/web/pages/login.tsx @@ -1,5 +1,4 @@ import { useRouter } from 'next/router' -import Script from 'next/script' import { useState, useEffect } from 'react' import { LoginLayout } from './../components/templates/LoginLayout' import { parseErrorCodes } from '../lib/queryParamParser'