Provider page added
This commit is contained in:
@@ -44,7 +44,7 @@
|
||||
<td><span class="badge badge-success-inverse">Active</span></td>
|
||||
<!-- td> <a class="mr-3" href="javascript:void(0);" onclick="selectPatient(<?= $prow->patient_id ?>)" ><i class="fe fe-edit"></i></a><a href="javascript:void(0);" onclick="calendarPatient(<?= $prow->patient_id ?>)"><i class="fe fe-calendar"></i></a></!-->
|
||||
</tr>
|
||||
<?
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
@@ -1,20 +1,4 @@
|
||||
|
||||
<!-- end app-header -->
|
||||
<!-- begin app-container -->
|
||||
<div class="app-container">
|
||||
<!-- begin app-nabar -->
|
||||
<aside class="app-navbar">
|
||||
<? include "application/views/template/menu/sidemain.php"; ?>
|
||||
</aside>
|
||||
<!-- end app-navbar -->
|
||||
<!-- begin app-main -->
|
||||
<div class="app-main" id="main">
|
||||
<!-- begin container-fluid -->
|
||||
<div class="container-fluid">
|
||||
|
||||
<? include "application/views/template/topstrip.php"; ?>
|
||||
<? include "application/views/template/topstrip2.php"; ?>
|
||||
|
||||
<!-- begin row -->
|
||||
|
||||
|
||||
@@ -113,16 +97,10 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xxl-6 m-b-30">
|
||||
<? include 'components/patient_listing.php'; ?>
|
||||
<?php include 'components/patient_listing.php'; ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- end row -->
|
||||
<!-- event Modal -->
|
||||
<div class="modal fade" id="eventModal" tabindex="-1" role="dialog" aria-labelledby="verticalCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
@@ -158,11 +136,5 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end container-fluid -->
|
||||
</div>
|
||||
<!-- end app-main -->
|
||||
</div>
|
||||
<!-- end app-container -->
|
||||
<!-- begin footer -->
|
||||
|
||||
|
||||
|
||||
@@ -107,7 +107,7 @@ $registeration_completed = isset($loginReturn)?$loginReturn :false;
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 mt-3">
|
||||
<div class="col-12 mt-3" style="text-align: right;">
|
||||
<button type="submit" class="btn btn-primary">Sign up</button>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?
|
||||
<?php
|
||||
$menu = array(
|
||||
'office' =>[
|
||||
'Dashboard'=>['provider','Dashboard','1'],
|
||||
@@ -30,12 +30,12 @@ $menu = array(
|
||||
<span class="nav-label label label-danger">9</span>
|
||||
</a>
|
||||
<ul aria-expanded="false">
|
||||
<?
|
||||
<?php
|
||||
foreach( $menu['office'] AS $mnuItem){
|
||||
$selectedString = $mnuItem[2]==1 ? " class='active' " : '';
|
||||
?>
|
||||
<li> <a href='/<?=$mnuItem[0]?>' <?=$selectedString?> ><?=$mnuItem[1]?></a> </li>
|
||||
<?
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<!-- li class="active"> <a href='/provider'>Dashboard</a> </li>
|
||||
|
||||
@@ -1,10 +1,21 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
|
||||
|
||||
|
||||
</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>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>MERMS - <?= isset($_SESSION['practice_name'])? $_SESSION['practice_name']:''; ?></title>
|
||||
<title>MERMS - Panel</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
||||
<meta name="description" content="Admin template that can be used to build dashboards for CRM, CMS, etc." />
|
||||
@@ -235,5 +235,21 @@
|
||||
</nav>
|
||||
<!-- end navbar -->
|
||||
</header>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- begin app-container -->
|
||||
<div class="app-container">
|
||||
<!-- begin app-nabar -->
|
||||
<aside class="app-navbar">
|
||||
<?php include "menu/sidemain.php"; ?>
|
||||
</aside>
|
||||
<!-- end app-navbar -->
|
||||
<!-- begin app-main -->
|
||||
<div class="app-main" id="main">
|
||||
<!-- begin container-fluid -->
|
||||
<div class="container-fluid">
|
||||
|
||||
<?php include "topstrip.php"; ?>
|
||||
<?php include "topstrip2.php"; ?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user