File: /home/rtbrisc/public_html/admin/main/track/index.php
<?php include("../general/header.php"); ?>
<body class="">
<?php include("../general/navbar.php"); ?>
<!-- BEGIN CONTENT -->
<div class="page-container row-fluid">
<?php include("../general/sidebar.php"); ?>
<!-- BEGIN PAGE CONTAINER-->
<div class="page-content">
<div class="content">
<!-- BEGIN PAGE TITLE -->
<?php include("../general/customer_name.php"); ?>
<!-- END PAGE TITLE -->
<ul class="breadcrumb">
<li>
<p>TRACK MY DEVICE</p>
</li>
<li><a href="../dashboard" class="active">DASHBOARD</a> </li>
</ul>
<!-- BEGIN PlACE PAGE CONTENT HERE -->
<div class="row">
<div class="col-md-6 col-vlg-6 col-sm-6">
<div class="tiles purple m-b-10">
<div class="tiles-body">
<a href="available.php" style="display: block;">
<h3 class="text-center text-white">GENERATE ID</h3>
</a>
<h4 class="blend text-center">Know the status of your device</h4>
</div>
</div>
</div>
<div class="col-md-6 col-vlg-6 col-sm-6">
<div class="tiles blue m-b-10">
<div class="tiles-body">
<a href="history.php" style="display: block;">
<h3 class="text-center text-white">TRACK DEVICE</h3>
</a>
<h4 class="blend text-center">Record of devices tracked</h4>
</div>
</div>
</div>
</div>
<!-- END DASHBOARD TILES -->
<!-- END PLACE PAGE CONTENT HERE -->
</div>
</div>
<!-- END PAGE CONTAINER -->
<?php include("../general/chat_bar.php"); ?>
</div>
<!-- END CONTENT -->
<?php include("../general/footer.php"); ?>
</body>
</html>
<?php include ('../general/header.php'); ?>
<body>
<!-- container section start -->
<section id="container" class="">
<?php include("../general/user_navbar.php"); ?>
<!--sidebar start-->
<?php include("../general/sidebar.php"); ?>
<!--sidebar end-->
<!--main content start-->
<section id="main-content">
<section class="wrapper container-fluid">
<div class="row">
<div class="col-lg-12">
<h3 class="page-header"><i class="fa fa-user"></i> <?php echo $row['Lastname'] . ", " . $row['Firstname']; ?></h3>
<ol class="breadcrumb">
<li><i class="fa fa-home"></i><a href="../dashboard/">Dashboard</a></li>
<li><i class="icon_compass_alt"></i>Track Your Device</li>
</ol>
</div>
</div>
<!-- Form validations -->
<div class="row">
<div class="col-lg-12">
<section class="panel">
<!-- <header class="panel-heading">
Advanced Form validations
</header> -->
<div class="panel-body">
<div class="row">
<!-- Column -->
<div class="col-lg-6 col-sm-12">
<div class="card" style="background: #FFF; padding: 2px 5px; border-radius: 25px; text-align: center; border: 1px solid #000; margin: 5px 0;">
<div class="card-body">
<div class="d-flex flex-row">
<div class="m-l-10 align-self-center">
<h3 class="m-b-0 font-light">
<a href="available.php">
Start Tracking
</a>
</h3>
<h5 class="text-muted m-b-0">Know the status of your device</h5>
</div>
</div>
</div>
</div>
</div>
<!-- Column -->
<!-- Column -->
<div class="col-lg-6 col-sm-12">
<div class="card" style="background: #FFF; padding: 2px 5px; border-radius: 25px; text-align: center; border: 1px solid #000; margin: 5px 0;">
<div class="card-body">
<div class="d-flex flex-row">
<div class="m-l-10 align-self-center">
<h3 class="m-b-0 font-lgiht">
<a href="history.php">
Tracking History
</a>
</h3>
<h5 class="text-muted m-b-0">Record of Devices Tracked</h5>
</div>
</div>
</div>
</div>
</div>
<!-- Column -->
</div>
<!-- Row -->
</div>
</section>
</div>
</div>
<!-- page end-->
</section>
<?php include("../general/footer_text.php"); ?>
</section>
<!--main content end-->
</section>
<!-- container section end -->
<?php include("../general/footer.php"); ?>
</body>
</html>