before merge

This commit is contained in:
Yogamnan 2025-02-19 13:59:55 +07:00
parent 228c6396e3
commit c341cce082
1 changed files with 3 additions and 0 deletions

View File

@ -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"
/>
</div>
@ -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 = () => {
<label className="text-[#6B5CEA]">Nama Organisasi/Perusahaan</label>
<input
type="text"
maxLength={50}
placeholder="Masukkan nama organisasi/perusahaan Anda"
className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5"
/>