diff --git a/app/(auth)/sign-up/page.tsx b/app/(auth)/sign-up/page.tsx index 4fe95fd..dc31442 100644 --- a/app/(auth)/sign-up/page.tsx +++ b/app/(auth)/sign-up/page.tsx @@ -1,4 +1,5 @@ import UserAuthForm from '@/components/ui/UserAuthForm'; +import Link from 'next/link'; export default function Page() { return ( diff --git a/components/ui/Input.tsx b/components/ui/Input.tsx index 9090c86..ad2a0fe 100644 --- a/components/ui/Input.tsx +++ b/components/ui/Input.tsx @@ -10,7 +10,7 @@ const Input = React.forwardRef( -
+ {!isSignIn && ( <> } {isSignIn ? 'Se connecter' : "S'inscrire"} +

+ {isSignIn ? "Vous n'avez pas de compte?" : 'Vous possédez un compte?'}{' '} + + {isSignIn ? "S'inscrire maintenant" : 'Se connecter'} + +

);