allow and disallow multiple payment
parent
5e6bbd14ff
commit
62120de429
|
@ -87,7 +87,7 @@ $conn->close();
|
|||
<div class="progress-bar">
|
||||
<div class="progress-fill" style="width: <?= $loanPercent ?>%;"></div>
|
||||
</div>
|
||||
<small><?= round($loanPercent, 2) ?>% Completed</small>
|
||||
<p style="font-size: 18px; font-weight: bold;"><?= round($loanPercent, 2) ?>% Completed</p>
|
||||
<div class="remaining-text">
|
||||
Target: ₹ <?= number_format($collectableLoan, 2) ?> |
|
||||
Remaining: ₹ <?= number_format($remainingLoan, 2) ?>
|
||||
|
@ -101,7 +101,7 @@ $conn->close();
|
|||
<div class="progress-bar">
|
||||
<div class="progress-fill" style="width: <?= $recurringPercent ?>%;"></div>
|
||||
</div>
|
||||
<small><?= round($recurringPercent, 2) ?>% Completed</small>
|
||||
<p style="font-size: 18px; font-weight: bold;"><?= round($recurringPercent, 2) ?>% Completed</p>
|
||||
<div class="remaining-text">
|
||||
Target: ₹ <?= number_format($collectableRecurring, 2) ?> |
|
||||
Remaining: ₹ <?= number_format($remainingRecurring, 2) ?>
|
||||
|
@ -199,7 +199,7 @@ $conn->close();
|
|||
min-width: 200px;
|
||||
background: linear-gradient(135deg, #f0f0f0ff, #d3d3d3ff);
|
||||
border-radius: 20px;
|
||||
padding: 20px;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
@ -222,8 +222,9 @@ $conn->close();
|
|||
transition: width 0.4s ease;
|
||||
}
|
||||
.remaining-text {
|
||||
margin-top: 8px;
|
||||
font-size: 13px;
|
||||
margin-top: 4px;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
background: #f0f0f0;
|
||||
display: inline-block;
|
||||
|
|
Loading…
Reference in New Issue