├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ └── signup │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components ├── form-with-react-hook-form.tsx ├── form-with-rhf-and-zod-and-server.tsx ├── form-with-rhf-and-zod.tsx └── form-without-react-hook-form.tsx ├── lib └── types.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/README.md -------------------------------------------------------------------------------- /app/api/signup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/app/api/signup/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components/form-with-react-hook-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/components/form-with-react-hook-form.tsx -------------------------------------------------------------------------------- /components/form-with-rhf-and-zod-and-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/components/form-with-rhf-and-zod-and-server.tsx -------------------------------------------------------------------------------- /components/form-with-rhf-and-zod.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/components/form-with-rhf-and-zod.tsx -------------------------------------------------------------------------------- /components/form-without-react-hook-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/components/form-without-react-hook-form.tsx -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/lib/types.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/HEAD/tsconfig.json --------------------------------------------------------------------------------