diff --git a/apps/dokploy/pages/register.tsx b/apps/dokploy/pages/register.tsx index 66f95512a..d41749d4d 100644 --- a/apps/dokploy/pages/register.tsx +++ b/apps/dokploy/pages/register.tsx @@ -9,6 +9,8 @@ import { useForm } from "react-hook-form"; import { toast } from "sonner"; import { z } from "zod"; import { OnboardingLayout } from "@/components/layouts/onboarding-layout"; +import { SignInWithGithub } from "@/components/proprietary/auth/sign-in-with-github"; +import { SignInWithGoogle } from "@/components/proprietary/auth/sign-in-with-google"; import { AlertBlock } from "@/components/shared/alert-block"; import { Logo } from "@/components/shared/logo"; import { Button } from "@/components/ui/button"; @@ -152,6 +154,17 @@ const Register = ({ isCloud }: Props) => { )} + {isCloud && ( +
+ + +
+ )} + {isCloud && ( +

+ Or register with email +

+ )}