From c341cce082f264fa0be82dc754e838f078b09da8 Mon Sep 17 00:00:00 2001 From: Yogamnan Date: Wed, 19 Feb 2025 13:59:55 +0700 Subject: [PATCH] before merge --- src/components/contact/FormSection.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/contact/FormSection.jsx b/src/components/contact/FormSection.jsx index 7fdd515..89d91b5 100644 --- a/src/components/contact/FormSection.jsx +++ b/src/components/contact/FormSection.jsx @@ -56,6 +56,7 @@ const ContactForm = () => { type="text" placeholder="Masukkan nama Anda" required + maxLength={50} className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5" /> @@ -65,6 +66,7 @@ const ContactForm = () => { type="tel" placeholder="Masukkan nomor telepon Anda" required + maxLength={20} className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5" pattern="[0-9]*" onInput={(e) => { @@ -85,6 +87,7 @@ const ContactForm = () => {