stub in signup view and toggle when button tapped

This commit is contained in:
Satindar Dhillon
2022-07-28 15:32:47 -07:00
parent 7dc1722ad2
commit 4e7010f7c1
4 changed files with 280 additions and 133 deletions

View File

@ -11,23 +11,25 @@ export function ResetSent(props: LoginFormProps): JSX.Element {
width: '100vw',
height: '100vh',
bg: '$omnivoreYellow',
overflowY: 'clip'
overflowY: 'clip',
}}
>
<Box css={{
width: '100%',
margin: '40px',
color: '$omnivoreGray',
'@xl': { margin: '138px' },
}}>
<h1>Reset email sent</h1>
<Box>
If there is an account assosciated with the email specified we sent a
password reset link. Click the link to reset your password. You may need
to check your spam folder.
<Box
css={{
width: '100%',
margin: '40px',
color: '$omnivoreGray',
'@xl': { margin: '138px' },
}}
>
<h1>Reset email sent</h1>
<Box>
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
need to check your spam folder.
</Box>
</Box>
</Box>
</HStack>
</HStack>
</>
)
}