From 6723ec8ea401d6ce80061c0aab2b2817cb73c52d Mon Sep 17 00:00:00 2001 From: henrygd Date: Wed, 28 Jan 2026 18:16:30 -0500 Subject: [PATCH] update honeypot field name and autofill ignores (#1011) --- .../site/src/components/login/auth-form.tsx | 25 +++++++++++++------ 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/internal/site/src/components/login/auth-form.tsx b/internal/site/src/components/login/auth-form.tsx index c0e1c987..22ac16e7 100644 --- a/internal/site/src/components/login/auth-form.tsx +++ b/internal/site/src/components/login/auth-form.tsx @@ -25,13 +25,13 @@ const passwordSchema = v.pipe( ) const LoginSchema = v.looseObject({ - company_website: honeypot, + website: honeypot, email: emailSchema, password: passwordSchema, }) const RegisterSchema = v.looseObject({ - company_website: honeypot, + website: honeypot, email: emailSchema, password: passwordSchema, passwordConfirm: passwordSchema, @@ -248,8 +248,19 @@ export function UserAuthForm({ )}
{/* honeypot */} - - + +