mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-13 19:09:49 +00:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user