<?php $user_data = $this->session->userdata(); ?>
<header class="topbar">
<nav class="navbar top-navbar navbar-expand-md navbar-light">
<!-- ============================================================== -->
<!-- Logo -->
<!-- ============================================================== -->
<div class="navbar-header">
<a class="navbar-brand web" href="<?php echo base_url('backend')?>">Medisave Healthcare BD</a>
<a class="navbar-brand mobile" href="<?php echo base_url('backend')?>">medisave healthcare bd</a>
</div>
<!-- ============================================================== -->
<!-- End Logo -->
<!-- ============================================================== -->
<div class="navbar-collapse">
<!-- ============================================================== -->
<!-- toggle and nav items -->
<!-- ============================================================== -->
<ul class="navbar-nav mr-auto mt-md-0">
<!-- This is -->
<li class="nav-item"> <a class="nav-link nav-toggler hidden-md-up text-muted waves-effect waves-dark"
href="javascript:void(0)"><i class="mdi mdi-menu"></i></a> </li>
<h3 class="topbar_company"><?php echo $this->session->userdata('company_name', TRUE) ?></h3>
</ul>
<!-- ============================================================== -->
<!-- User profile and search -->
<!-- ============================================================== -->
<ul class="navbar-nav my-lg-0">
<!-- ============================================================== -->
<!-- Search -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Profile -->
<!-- ============================================================== -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href=""
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span
id="user_full_name"><?php echo $this->session->userdata('client_auth_user', TRUE) ?></span></a> <a href="<?php echo base_url('signOutUser') ?>" class="sign-out-btn"><i class="fa fa-power-off"></i>
Logout</a>
<div class="dropdown-menu dropdown-menu-right scale-up">
<ul class="dropdown-user">
<!--<li role="separator" class="divider"></li>
<li><a href="<?php /*echo base_url('profile') */?>"><i class="ti-user"></i> My
Profile</a></li>
<li><a href="<?php /*echo base_url('changePassword') */?>"><i class="ti-wallet"></i>
Change
Password</a></li>
<li role="separator" class="divider"></li>-->
<li></li>
</ul>
</div>
</li>
</ul>
</div>
</nav>
</header>
</ul>
</div>
</nav>
</header>
|