EVOLUTION-NINJA
Edit File: admin_dashboard.php
<?php echo view('includes/admin_header.php') ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1 style="padding-bottom:10px;border-bottom:2px dashed #468662;margin-bottom:20px; font-weight: bold;"> DASHBOARD </h1> <!--<a href="javascript:history.back()" class="btn btn-primary" style="float:right;margin-bottom:30px; margin-right:15px;">Back</a>--> <!--<ol class="breadcrumb">--> <!-- <li><a href="#"><i class="fa fa-dashboard"></i> Home </a></li>--> <!-- <li class="active">Dashboard</li>--> <!--</ol>--> </section> <!-- Main content --> <section class="content"> <!-- Small boxes (Stat box) --> <!-- ./col --> <!-- ./col --> <div class="col-lg-3 col-xs-6"> <!-- small box --> <div class="small-box bg-yellow" style="border-radius: 10px;"> <div class="inner"> <h3><?php echo $users ?></h3> <p>Enrolled User Registrations</p> </div> <div class="icon"> <i class="ion ion-person-add"></i> </div> <a href="<?php echo site_url('enrolled-users-list'); ?>" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a> </div> </div> <!-- ./col --> <div class="col-lg-3 col-xs-6"> <!-- small box --> <div class="small-box bg-red" style="border-radius: 10px;"> <div class="inner"> <h3><?php echo $faculty ?></h3> <p>Faculty Registrations</p> </div> <div class="icon"> <i class="ion ion-pie-graph"></i> </div> <a href="<?php echo site_url('faculty-list'); ?>" class="small-box-footer">More info <i class="fa fa-arrow-circle-right"></i></a> </div> </div> <!-- ./col --> </div> <!-- /.row --> </section> <style> .content-wrapper{ background-image: url('public/assets/website_assets/images/banner.png'); background-repeat: no-repeat; background-size: cover; } </style> <!-- /.content --> <?php echo view('includes/admin_footer.php') ?>