Advertisement
Guest User

Untitled

a guest
Mar 27th, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  <Form>
  2.                                         <Input
  3.                                             id={"id"}
  4.                                         />
  5.                                         <Stack spacing={10}>
  6.                                             <Button
  7.                                                 mt={8}
  8.                                                 type="submit"
  9.                                                 bg={'blue.400'}
  10.                                                 isLoading={isSubmitting}
  11.                                                 color={'white'}
  12.                                                 _hover={{ bg: 'blue.500' }}>
  13.                                                 Sign up
  14.                                               </Button>
  15.                                             <Flex  >
  16.                                                 <Text> Already have an account ?</Text>
  17.                                                 <NextLink href="/login">
  18.                                                     <Link ml="auto" color={'blue.400'}>Sign in </Link>
  19.                                                 </NextLink>
  20.                                             </Flex>
  21.  
  22.                                         </Stack>
  23.                                     </Form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement