summaryrefslogtreecommitdiff
path: root/src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-10-18 11:25:02 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-10-18 11:25:02 +0700
commitb884ae8fb7b3d208912f75decfe941435c59d571 (patch)
tree8d6eca2421e181064b088845b1684f61c3a72029 /src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx
parent661d742193b62aeb3d2a2350433bdd3714667625 (diff)
<iman> save to local storage
Diffstat (limited to 'src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx')
-rw-r--r--src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx b/src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx
index e5b2ff2c..a7d170e9 100644
--- a/src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx
+++ b/src/lib/pengajuan-tempo/component/informasiPerusahaan.jsx
@@ -262,6 +262,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
type='text'
className='form-input'
aria-invalid={errors.name}
+ value={form.name}
ref={nameRef}
onChange={handleInputChange}
/>
@@ -324,6 +325,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
ref={streetRef}
placeholder='Masukkan alamat lengkap perusahaan'
type='text'
+ value={form.street}
className='form-input'
onChange={handleInputChange}
/>
@@ -378,6 +380,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
ref={zipRef}
placeholder='Kode Pos'
type='number'
+ value={form.zip}
className='form-input'
onChange={handleInputChange}
/>
@@ -406,6 +409,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
ref={mobileRef}
placeholder='Masukkan nomor telfon perusahaan'
type='tel'
+ value={form.mobile}
className='form-input'
aria-invalid={errors.mobile}
onChange={handleInputChange}
@@ -433,6 +437,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
ref={bankNameRef}
placeholder='Nama bank'
type='text'
+ value={form.bankName}
className='form-input'
onChange={handleInputChange}
/>
@@ -452,6 +457,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
ref={accountNameRef}
placeholder='Nama Rekening'
type='text'
+ value={form.accountName}
className='form-input'
onChange={handleInputChange}
/>
@@ -469,6 +475,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
ref={accountNumberRef}
placeholder='Nomor Rekening Bank'
type='text'
+ value={form.accountNumber}
className='form-input'
onChange={handleInputChange}
/>
@@ -494,6 +501,7 @@ const informasiPerusahaan = ({ chekValid, buttonSubmitClick }) => {
name='website'
placeholder='www.indoteknik.com'
type='text'
+ value={form.website}
className='form-input'
onChange={handleInputChange}
/>