68 lines
1.7 KiB
PHP
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>© 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>
|