first commit

This commit is contained in:
Olu Amey
2021-10-09 21:59:14 -04:00
commit 2e1a4017c3
6336 changed files with 864678 additions and 0 deletions
@@ -0,0 +1,26 @@
<?
setlocale(LC_MONETARY, 'en_NG');
?>
<?
if ($_SESSION["offer_interest_count"] + $_SESSION['past_duejobs_count'] > 0) {
if ($_SESSION['past_duejobs_count'] > 0) {
?>
<div class="panel bg-slate" style="background-color: lightpink;"> <div class="panel-body"> <div class="row"> <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> </div>
<?
}
if ($_SESSION["offer_interest_count"] > 0) {
?>
<div class="panel bg-slate"> <div class="panel-body"> <div class="row"> <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> </div>
<?
}
} else {
?>
<?
}
?>