default config

This commit is contained in:
archer
2023-08-04 14:00:50 +08:00
parent 94a241bbb1
commit 6f37d7b460
5 changed files with 20 additions and 23 deletions

View File

@@ -87,16 +87,16 @@ const LoginForm = ({ setPageType, loginSuccess }: Props) => {
{!!errors.password && errors.password.message}
</FormErrorMessage>
</FormControl>
<Flex align={'center'} justifyContent={'space-between'} mt={6} color={'myBlue.600'}>
<Box
cursor={'pointer'}
_hover={{ textDecoration: 'underline' }}
onClick={() => setPageType('forgetPassword')}
fontSize="sm"
>
?
</Box>
{feConfigs?.show_register && (
{feConfigs?.show_register && (
<Flex align={'center'} justifyContent={'space-between'} mt={6} color={'myBlue.600'}>
<Box
cursor={'pointer'}
_hover={{ textDecoration: 'underline' }}
onClick={() => setPageType('forgetPassword')}
fontSize="sm"
>
?
</Box>
<Box
cursor={'pointer'}
_hover={{ textDecoration: 'underline' }}
@@ -105,8 +105,8 @@ const LoginForm = ({ setPageType, loginSuccess }: Props) => {
>
</Box>
)}
</Flex>
</Flex>
)}
<Button
type="submit"
mt={8}