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