style: add page transaksi laporan for dinas

main
Yuri Dimas 2025-10-23 22:17:41 +07:00
parent af2c97a08b
commit 136dd5bd10
No known key found for this signature in database
GPG Key ID: 4A421F9108FB5D2C
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Mvc;
namespace BankSampahApp.Areas.Dinas.Controllers
{
[Area("Dinas")]
public class TransaksiLaporanController : Controller
{
public IActionResult Index()
{
return View();
}
}
}

View File

@ -0,0 +1,38 @@
@{
ViewData["Title"] = "Transaksi Laporan";
}
<div class="flex flex-col gap-2 md:flex-row md:justify-between md:gap-0">
<div class="prose">
<span class="text-xl font-semibold text-black">
Transaksi Laporan
</span>
</div>
</div>
<div class="h-6"></div>
<div class="card bg-white">
<div class="card-body">
<form class="grid-col-1 grid items-end gap-4 md:grid-cols-4">
<fieldset class="fieldset">
<legend class="fieldset-legend">Tanggal Awal</legend>
<input type="date" class="input" />
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend">Tanggal Akhir</legend>
<input type="date" class="input" />
</fieldset>
<fieldset class="fieldset">
<legend class="fieldset-legend">Jenis Laporan</legend>
<select class="select">
<option disabled selected>Pilih Jenis Laporan</option>
</select>
</fieldset>
<button class="btn bg-bank-sampah-primary-500 w-full rounded-full text-white">
Download Excel
<i class="ph ph-download ms-2"></i>
</button>
</form>
</div>
</div>