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

main-dlh
Regiaaaaaa 2025-11-21 16:21:26 +07:00
parent 62da5b0a90
commit 2a702c4acc
1 changed files with 9 additions and 9 deletions

View File

@ -15,17 +15,17 @@
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Jumlah RT</legend> <legend class="fieldset-legend font-medium text-gray-700">Jumlah RT</legend>
<input type="number" placeholder="0" class="input input-bordered w-full bg-white"> <input type="number" placeholder="0" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Jumlah Jiwa</legend> <legend class="fieldset-legend font-medium text-gray-700">Jumlah Jiwa</legend>
<input type="number" placeholder="0" class="input input-bordered w-full bg-white"> <input type="number" placeholder="0" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Kota /Kabupaten</legend> <legend class="fieldset-legend font-medium text-gray-700">Kota /Kabupaten</legend>
<input type="text" placeholder="Masukkan kota/kabupaten" class="input input-bordered w-full bg-white"> <input type="text" placeholder="Masukkan kota/kabupaten" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
</div> </div>
@ -38,7 +38,7 @@
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Jumlah Rumah</legend> <legend class="fieldset-legend font-medium text-gray-700">Jumlah Rumah</legend>
<input type="number" placeholder="0" class="input input-bordered w-full bg-white"> <input type="number" placeholder="0" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
<fieldset class="fieldset"> <fieldset class="fieldset">
@ -48,12 +48,12 @@
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Timbulan Sampah per Hari (kg)</legend> <legend class="fieldset-legend font-medium text-gray-700">Timbulan Sampah per Hari (kg)</legend>
<input type="number" placeholder="0" class="input input-bordered w-full bg-white"> <input type="number" placeholder="0" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Kecamatan</legend> <legend class="fieldset-legend font-medium text-gray-700">Kecamatan</legend>
<input type="text" placeholder="Masukkan kecamatan" class="input input-bordered w-full bg-white"> <input type="text" placeholder="Masukkan kecamatan" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
</div> </div>
</div> </div>
@ -62,12 +62,12 @@
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mt-8"> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mt-8">
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Kelurahan</legend> <legend class="fieldset-legend font-medium text-gray-700">Kelurahan</legend>
<input type="text" placeholder="Masukkan kelurahan" class="input input-bordered w-full bg-white"> <input type="text" placeholder="Masukkan kelurahan" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
<fieldset class="fieldset"> <fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">RW</legend> <legend class="fieldset-legend font-medium text-gray-700">RW</legend>
<input type="text" placeholder="Masukkan RW" class="input input-bordered w-full bg-white"> <input type="text" placeholder="Masukkan RW" class="input input-bordered w-full bg-gray-100 cursor-not-allowed" readonly>
</fieldset> </fieldset>
<fieldset class="fieldset"> <fieldset class="fieldset">
@ -84,7 +84,7 @@
<!-- View SK Button --> <!-- View SK Button -->
<div class="mt-5"> <div class="mt-5">
<button type="button" class="btn btn-outline btn-success rounded-full px-10"> <button type="button" class="btn btn-outline btn-primary rounded-full px-10">
Lihat SK Lihat SK
</button> </button>
</div> </div>