OR
diff --git a/src/app/(auth)/layout.tsx b/src/app/(auth)/layout.tsx
index d80e5f69..c49cb151 100644
--- a/src/app/(auth)/layout.tsx
+++ b/src/app/(auth)/layout.tsx
@@ -2,7 +2,7 @@ import React, { ReactNode } from "react";
const layout = ({ children }: { children: ReactNode }) => {
return (
-
+
{children}
);
diff --git a/src/app/(auth)/signup/page.tsx b/src/app/(auth)/signup/page.tsx
index 287d1b06..6aa275be 100644
--- a/src/app/(auth)/signup/page.tsx
+++ b/src/app/(auth)/signup/page.tsx
@@ -13,9 +13,13 @@ import { useSignupQuery } from "@/hooks/auth/use-signup-query";
import type { SignupRequest } from "@/api/auth/signup-action";
import SimpleSignUpIn from "../_components/simple-signUpIn";
import { hasProfanity } from "@/utils/profanityFilter";
+import { useRouter } from "next/navigation";
const Page = () => {
+ const router = useRouter();
const [showPassword, setShowPassword] = useState(false);
+ const [showPassword2, setShowPassword2] = useState(false);
+
const {
register,
formState: { errors, isValid },
@@ -137,7 +141,7 @@ const Page = () => {
{
aria-invalid={!!errors.passwordConfirmation}
rightIcon={
@@ -164,6 +168,19 @@ const Page = () => {
})}
/>
+
+
+