MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/www/imenso.co/demo/claapp/layout/footer.php
<?php

if(isset($_SESSION['success']))
{
  ?>
    <div class="alert alert-success fade in fixed_right">
        <a href="#" class="close" data-dismiss="alert">&times;</a>
        <!-- <strong>Success!</strong> --> <?php echo $_SESSION['success'];  ?>.
    </div>
  <?php
  unset($_SESSION['success']);
} 
else if(isset($_SESSION['error']))
{
   ?>
    <div class="alert alert-danger fade in fixed_right">
        <a href="#" class="close" data-dismiss="alert">&times;</a>
        <!-- <strong>Error!</strong> --> <?php echo $_SESSION['error'];  ?>.
    </div>
   <?php
   unset($_SESSION['error']);
}
else if(isset($_SESSION['warrning']))
{
   ?>
    <div class="alert alert-warning fade in fixed_right">
        <a href="#" class="close" data-dismiss="alert">&times;</a>
        <!-- <strong>Warning!</strong> --> <?php echo $_SESSION['warrning'];  ?>.
    </div>
   <?php
   unset($_SESSION['warrning']);
}

?>
<div id="footerwrap">
  <div class="container">
    <div class="row">
      <div class="col-md-12">
        <span class="copyright">© 2018, nThrive, Inc. All Rights Reserved.</span>
      </div>
    </div>
  </div>
</div>
 <div class="loader"></div> 
<script src="<?php echo PATH ?>libs/jquery.min.js"></script>

<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="<?php echo PATH ?>libs/bootstrap.min.js"></script>
<script type="text/javascript" src="<?php echo PATH ?>libs/jquery.validate.js"></script>
<script type="text/javascript">
  if($('.alert').length)
  {
      setTimeout(function(){ $('.close').trigger('click'); }, 3000);
  }
  $(window).load(function() {
    $('.loader').hide();
  });
</script>

</body>
</html>