File: /home/imensosw/www/imenso.co/dev/japfa/dispatch/completed.php
<!doctype html>
<html lang="en-US" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<title>Loading Completed | Japfa </title>
<link rel='stylesheet' href='../css/bootstrap.min.css' media='all' />
<link rel='stylesheet' href='../css/style.css' media='all' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" media="all">
<link href="https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg fixed-top">
<div class="navbar-logo">
<a class="navbar-brand" href="#">
<img src="../images/logo-2.png" width="80">
</a>
<span class="divide">|</span> <span class="subhead">Dispatch</span>
</div>
<div class="navbar-collapse" id="navbarSupportedContent">
<div class="navbar-collapse justify-content-center" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="toload.php">Vehicles to be loaded</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="completed.php">Loading Completed</a>
</li>
</ul>
</div>
</div>
<div class="ml-auto userinfo">
<div class="user-area dropdown">
<a class="dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<div class="avtar">AS</div>
<span class="hide-mobile">Alice Smith</span>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Profile</a>
<a class="dropdown-item" href="#">Setting</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="index.php">Logout</a>
</div>
</div>
</div>
</nav>
<main class="offset">
<div class="container">
<div class="row align-items-center pt-4 border-mobile">
<div class="col-lg-4">
<h1 class="date-scroll"> <i class="fa fa-calendar"></i> 5 Dec 2021 </h1>
</div>
<div class="col-lg-4 hide-mobile">
<form class="form-search">
<input class="form-control mr-sm-2" type="search" placeholder="Search.." aria-label="Search">
</form>
</div>
</div>
<div id="table-scroll" class="table-scroll mt-4">
<table id="main-table" class="main-table">
<thead>
<tr>
<th scope="col" width="600">Vehicle Name</th>
<th scope="col">Allocated Qty</th>
<th scope="col">Loaded Qty</th>
<th scope="col" class="text-right">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td data-th="Vehicle Name"><a href="#">MH 06 FR 0121</a></td>
<td data-th="Allocated Qty"> 752 Kg </td>
<td data-th="Loaded QTY"> 750 Kg </td>
<td class="text-right"><a href="details.php" class="btn btn-primary">View Details</a></td>
</tr>
<tr>
<td data-th="Vehicle Name"><a href="#">MH 06 FR 0121</a></td>
<td data-th="Allocated Qty"> 752 Kg </td>
<td data-th="Loaded QTY"> 750 Kg </td>
<td class="text-right"><a href="details.php" class="btn btn-primary">View Details</a></td>
</tr>
<tr>
<td data-th="Vehicle Name"><a href="#">MH 06 FR 0121</a></td>
<td data-th="Allocated Qty"> 752 Kg </td>
<td data-th="Loaded QTY"> 750 Kg </td>
<td class="text-right"><a href="details.php" class="btn btn-primary">View Details</a></td>
</tr>
<tr>
<td data-th="Vehicle Name"><a href="#">MH 06 FR 0121</a></td>
<td data-th="Allocated Qty"> 752 Kg </td>
<td data-th="Loaded QTY"> 750 Kg </td>
<td class="text-right"><a href="details.php" class="btn btn-primary">View Details</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<?php include("../footer.php");?>
</body>
</html>