before merge
This commit is contained in:
parent
228c6396e3
commit
c341cce082
|
@ -56,6 +56,7 @@ const ContactForm = () => {
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Masukkan nama Anda"
|
placeholder="Masukkan nama Anda"
|
||||||
required
|
required
|
||||||
|
maxLength={50}
|
||||||
className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5"
|
className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -65,6 +66,7 @@ const ContactForm = () => {
|
||||||
type="tel"
|
type="tel"
|
||||||
placeholder="Masukkan nomor telepon Anda"
|
placeholder="Masukkan nomor telepon Anda"
|
||||||
required
|
required
|
||||||
|
maxLength={20}
|
||||||
className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5"
|
className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5"
|
||||||
pattern="[0-9]*"
|
pattern="[0-9]*"
|
||||||
onInput={(e) => {
|
onInput={(e) => {
|
||||||
|
@ -85,6 +87,7 @@ const ContactForm = () => {
|
||||||
<label className="text-[#6B5CEA]">Nama Organisasi/Perusahaan</label>
|
<label className="text-[#6B5CEA]">Nama Organisasi/Perusahaan</label>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
|
maxLength={50}
|
||||||
placeholder="Masukkan nama organisasi/perusahaan Anda"
|
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"
|
className="w-full mt-1 p-4 border border-[#5B59E8] rounded-lg focus:ring-2 focus:ring-[#5B59E8] 2xl:p-5"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue