Initial release

This commit is contained in:
2025-11-23 20:42:56 +01:00
commit 721217a8e3
130 changed files with 7099 additions and 0 deletions
@@ -0,0 +1,14 @@
import { z } from "zod"
import { passwordSchema } from "@/features/auth/schemas"
export const changePasswordSchema = z
.object({
password: passwordSchema,
confirmPassword: z.string(),
})
.refine((data) => data.password === data.confirmPassword, {
message: "Passwords do not match",
path: ["confirmPassword"],
})
export type ChangePasswordInputs = z.infer<typeof changePasswordSchema>