Files
MermsPanel2025/app/Views/template/provider_footer.php
T
2024-09-07 19:07:03 -04:00

68 lines
1.7 KiB
PHP

</div>
<!-- end container-fluid -->
</div>
<!-- end app-main -->
</div>
<!-- end app-container -->
<!-- begin footer -->
<footer class="footer">
<div class="row">
<div class="col-12 col-sm-6 text-center text-sm-left">
<p>&copy; Copyright MERMS <?=date("Y");?>. All rights reserved.</p>
</div>
<div class="col col-sm-6 ml-sm-auto text-center text-sm-right">
<p>MERMS - <?= isset($_SESSION['practice_name'])? $_SESSION['practice_name']:''; ?></p>
</div>
</div>
</footer>
<!-- end footer -->
</div>
<!-- end app-wrap -->
</div>
<!-- end app -->
<!-- plugins -->
<script src="/assets/js/vendors.js"></script>
<!-- custom app -->
<script src="/assets/js/app.js"></script>
<form method="post" name="post_nav" action="">
<input type="hidden" name="patientID" value="">
</form>
<script type="text/javascript">
<!--
function post_nav_action(what, value) {
// alert(what);
document.post_nav.action = what + '';
document.post_nav.patientID.value = value;
document.post_nav.submit();
return false;
}
function selectPatient( practicePatientId ){
//alert( practicePatientId );
return post_nav_action('/patient/patientView', practicePatientId);
}
function calendarPatient( practicePatientId ){
// alert( practicePatientId );
return post_nav_action('/patient', practicePatientId);
}
// -->
</script>
</body>
</html>