This commit is contained in:
Suvodip
2025-03-19 17:46:05 +05:30
parent 6e69bf9f35
commit 8bcf5c055d
13 changed files with 58 additions and 43 deletions

View File

@@ -46,7 +46,7 @@ try {
<div class="container mt-5">
<h3 class="text-primary mb-4 text-center">Pending EMIs (<?php echo date('F Y', strtotime($startDate)); ?>)</h3>
<h3 class="mb-4 text-center" style="color: #374151;">Pending EMIs (<?php echo date('F Y', strtotime($startDate)); ?>)</h3>
<!-- Date & Month Filter Form -->
<form method="GET" class="d-flex flex-wrap gap-3 align-items-end justify-content-center">
@@ -66,14 +66,14 @@ try {
<input type="date" id="end_date" name="end_date" class="form-control" value="<?php echo htmlspecialchars($endDate); ?>">
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary px-4">Filter</button>
<button type="submit" class="btn text-white px-4" style="background-color: #374151;">Filter</button>
</div>
</form>
<!-- EMI Table -->
<div class="table-responsive mt-4">
<table class="table table-bordered table-hover">
<thead class="bg-primary text-white text-center">
<thead class="text-white text-center" style="background-color: #374151;">
<tr>
<th>Customer Name</th>
<th>EMI Amount</th>
@@ -109,7 +109,7 @@ try {
</div>
<!-- Total Demand Amount -->
<div class="alert alert-info text-center mt-3">
<div class="alert fw-bold text-center mt-3" style="background-color: #37415130;">
<h4 class="mb-0">Total Demand EMI Amount: $<?php echo number_format($totalDemand, 2); ?></h4>
</div>
</div>