feat: create a bps rw page

main-dlh
Regiaaaaaa 2025-11-17 16:03:20 +07:00
parent a89417e7e4
commit 50771cbb66
2 changed files with 91 additions and 1 deletions

View File

@ -31,7 +31,9 @@
</div>
<input type="radio" name="tab_profil_rw" class="tab checked:text-white [--tab-bg:green]" aria-label="BPS-RW" />
<div class="tab-content bg-base-100 border-base-300 p-0"></div>
<div class="tab-content bg-base-100 border-base-300 p-0">
@await Html.PartialAsync("_TabIndexBpsRw")
</div>
<input type="radio" name="tab_profil_rw" class="tab checked:text-white [--tab-bg:green]" aria-label="Surat Usulan" />
<div class="tab-content bg-base-100 border-base-300 p-0"></div>

View File

@ -0,0 +1,88 @@
<div class="p-8">
<form class="w-full">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
<!-- Left Column -->
<div class="space-y-5">
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nama Ketua Bidang</legend>
<input type="text" placeholder="Masukkan nama ketua bidang" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nama Seksi Operasional 1</legend>
<input type="text" placeholder="Masukkan nama seksi operasional 1" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nama Seksi Operasional 2</legend>
<input type="text" placeholder="Masukkan nama seksi operasional 2" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nama Seksi Sosialisasi & Pengawasan 1</legend>
<input type="text" placeholder="Masukkan nama seksi sosialisasi & pengawasan 1" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nama Seksi Sosialisasi & Pengawasan 2</legend>
<input type="text" placeholder="Masukkan nama seksi sosialisasi & pengawasan 2" class="input input-bordered w-full bg-white">
</fieldset>
<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">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nama Supervisor Pendamping</legend>
<input type="text" placeholder="Masukkan nama supervisor pendamping" class="input input-bordered w-full bg-white">
</fieldset>
</div>
<!-- Right Column -->
<div class="space-y-5">
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nomor WA Ketua Bidang</legend>
<input type="tel" placeholder="Masukkan nomor WA" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nomor Seksi Operasional 1</legend>
<input type="tel" placeholder="Masukkan nomor seksi operasional 1" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nomor WA Seksi Operasional 2</legend>
<input type="tel" placeholder="Masukkan nomor WA seksi operasional 2" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nomor WA Seksi Sosialisasi & Pengawasan 1</legend>
<input type="tel" placeholder="Masukkan nomor WA seksi sosialisasi & pengawasan 1" class="input input-bordered w-full bg-white">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nomor WA Seksi Sosialisasi & Pengawasan 2</legend>
<input type="tel" placeholder="Masukkan nomor WA seksi sosialisasi & pengawasan 2" class="input input-bordered w-full bg-white">
</fieldset>
<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">
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend font-medium text-gray-700">Nomor WA Supervisor Pendamping</legend>
<input type="tel" placeholder="Masukkan nomor WA supervisor pendamping" class="input input-bordered w-full bg-white">
</fieldset>
</div>
</div>
<!-- Submit Button -->
<div class="flex justify-end mt-10">
<button type="submit" class="btn btn-success text-white rounded-full px-16">
Simpan
</button>
</div>
</form>
</div>