Files
WrenchBoradWeb/www/application/views/users/common/userstrip.php
T
2022-02-28 20:00:43 -05:00

45 lines
1.3 KiB
PHP

<?
setlocale(LC_MONETARY, 'en_NG');
/*
*
<div class="fw-bold">
<h4 class="text-gray-900 fw-bolder">We need your attention!</h4>
<div class="fs-6 text-gray-700">Your payment was declined. To start using tools, please
<a href="#" class="fw-bolder" data-bs-toggle="modal" data-bs-target="#kt_modal_new_card">Add Payment Method</a>.</div>
</div>
*
*/
?>
<?
if ($_SESSION["offer_interest_count"] + $_SESSION['past_duejobs_count'] > 0) {
if ($_SESSION['past_duejobs_count'] > 0) {
?>
<div class="text-center pt-1">
<div class="d-flex align-items-center bg-light-danger rounded p-5 mb-7">
<a href="/proj/pastdue"> <h5 class="no-margin"> You have <?= $_SESSION['past_duejobs_count'] ?> task(s) that are passed due dates Click here to manage</h5></a>
</div>
</div>
<?
}
if ($_SESSION["offer_interest_count"] > 0) {
?>
<div class="text-center pt-1">
<div class="d-flex align-items-center bg-light-success rounded p-5 mb-7">
<a href="/jobs/offerinterest"> <h5 class="no-margin">You have <?= $_SESSION["offer_interest_count"] ?> interest in your task.Click to view now</h5></a>
</div>
</div>
<?
}
} else {
?>
<?
}
?>