mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-13 19:09:49 +00:00
fix: enforce email length validation in reset password form
- Added a maximum length constraint of 255 characters for the email input field. - Updated validation schema to include a message for exceeding the maximum length.
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,7 @@ 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