File: /home/imensosw/www/imenso.co/dev/japfa/delivery/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>Completed Orders | 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">Delivery</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="open-orders.php">Open Orders</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="completed.php">Completed Orders</a>
</li>
<li class="nav-item">
<a class="nav-link" href="return.php">Return</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">
<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 class="col-lg-4 text-right">
</div>
</div>
<div id="table-scroll" class="table-scroll mt-4">
<table id="main-table" class="main-table full-last-td">
<thead>
<tr>
<th scope="col" width="100">Order #</th>
<th scope="col">Customer Name</th>
<th scope="col">Address</th>
<th scope="col" class="text-right">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td data-th="Order #"><a href="#">1</a></td>
<td data-th="Customer Name">Shivlika Enterprises </td>
<td data-th="Address">Shop No. 4 Kothrod Pune 400024</td>
<td class="text-right"><a href="#" class="btn btn-primary">Generate Invoice</a> <a href="#" class="btn btn-secondary">Details</a></td>
</tr>
<tr>
<td data-th="Order #"><a href="#">2</a></td>
<td data-th="Customer Name"> Binary Foods </td>
<td data-th="Address">Shop No. 2 North Pune 411026</td>
<td class="text-right"><a href="#" class="btn btn-primary">Generate Invoice</a> <a href="#" class="btn btn-secondary">Details</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<?php include("../footer.php");?>
</body>
</html>