Merge pull request #4323 from Dokploy/fix/forgot-password-email-max-length

fix: enforce 255-char max length on forgot password email field
This commit is contained in:
Mauricio Siu
2026-04-28 18:09:35 -06:00
committed by GitHub
+8 -1
View File
@@ -30,6 +30,9 @@ const loginSchema = z.object({
.min(1, {
message: "Email is required",
})
.max(255, {
message: "Email must be at most 255 characters",
})
.email({
message: "Email must be a valid email",
}),
@@ -118,7 +121,11 @@ export default function Home() {
<FormItem>
<FormLabel>Email</FormLabel>
<FormControl>
<Input placeholder="Email" {...field} />
<Input
placeholder="Email"
maxLength={255}
{...field}
/>
</FormControl>
<FormMessage />
</FormItem>