feat: make it read-only in some columns and adjust the style button

main-dlh
Regiaaaaaa 2025-11-21 16:09:33 +07:00
parent 79ca26bcf2
commit 62da5b0a90
1 changed files with 13 additions and 3 deletions

View File

@ -30,7 +30,12 @@
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nama PJLP Pendamping</legend>
<input type="text" placeholder="Masukkan nama PJLP pendamping" class="input input-bordered w-full bg-white">
<input
type="text"
placeholder="Masukkan nama PJLP pendamping"
class="input input-bordered w-full bg-gray-100 cursor-not-allowed"
readonly
>
</fieldset>
<fieldset class="fieldset">
@ -68,7 +73,12 @@
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nomor WA PJLP Pendamping</legend>
<input type="tel" placeholder="Masukkan nomor WA PJLP pendamping" class="input input-bordered w-full bg-white">
<input
type="tel"
placeholder="Masukkan nomor WA PJLP pendamping"
class="input input-bordered w-full bg-gray-100 cursor-not-allowed"
readonly
>
</fieldset>
<fieldset class="fieldset">
@ -80,7 +90,7 @@
<!-- Submit Button -->
<div class="flex justify-end mt-10">
<button id="btnSimpanBpsRw" type="submit" class="btn btn-success text-white rounded-full px-16">
<button id="btnSimpanBpsRw" type="submit" class="btn btn-primary text-white rounded-full px-16">
Simpan
</button>
</div>