File: /home/imensosw/www/imenso.co/dev/japfa/delivery/customer-sign.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>Order Details | 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 active">
<a class="nav-link" href="open-orders.php">Open Orders</a>
</li>
<li class="nav-item">
<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 pt-4 align-items-center">
<div class="col-lg-6">
<h1 class="date-scroll"> <a href="open-orders.php"><i class="fa fa-long-arrow-left smbtn"></i></a> <strong>#1 - Binary Foods</strong> </h1>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div id="table-scroll" class="table-scroll mt-4 h-auto">
<table id="main-table" class="main-table full-first-td no-sticky-footer">
<thead>
<tr>
<th scope="col" width="70%">SKU Name</th>
<th scope="col">Dispatched Qty</th>
<th scope="col" class="text-right">Delivered Qty</th>
</tr>
</thead>
<tbody>
<tr>
<td>Whole Chicken WS Tandoor - (<960 gm)</td>
<td data-th="Dispatched Qty"><span> 140</span></td>
<td data-th="Delivered Qty"><input type="text" value="135" disabled="" class="form-control sml-input"></td>
</tr>
<tr>
<td>Whole Chicken WS Tandoor - (<960 gm)</td>
<td data-th="Dispatched Qty"><span> 140</span></td>
<td data-th="Delivered Qty"><input type="text" value="135" disabled="" class="form-control sml-input"></td>
</tr>
<tr>
<td>Whole Chicken WS Tandoor - (<960 gm)</td>
<td data-th="Dispatched Qty"><span> 140</span></td>
<td data-th="Delivered Qty"><input type="text" value="135" disabled="" class="form-control sml-input"></td>
</tr>
<tr>
<td>Whole Chicken WS Tandoor - (<960 gm)</td>
<td data-th="Dispatched Qty"><span> 140</span></td>
<td data-th="Delivered Qty"><input type="text" value="135" disabled="" class="form-control sml-input"></td>
</tr>
<tr>
<td>Whole Chicken WS Tandoor - (<960 gm)</td>
<td data-th="Dispatched Qty"><span> 140</span></td>
<td data-th="Delivered Qty"><input type="text" value="135" disabled="" class="form-control sml-input"></td>
</tr>
<tr>
<td>Whole Chicken WS Tandoor - (<960 gm)</td>
<td data-th="Dispatched Qty"><span> 140</span></td>
<td data-th="Delivered Qty"><input type="text" value="135" disabled="" class="form-control sml-input"></td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Total</th>
<td data-th="Dispatched Qty">540</td>
<td data-th="Delivered Qty" class="text-right">2500</td>
</tr>
</tfoot>
</table>
</div>
<div class="form-group mt-4">
<label>Customer Sign</label>
<textarea class="form-control" rows="5" name=""></textarea>
</div>
<div class="form-group mt-4">
<label>Terms & Conditions</label><br>
<small>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi.</small>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox">
<label class="form-check-label" for="gridRadios1">
I accept the terms and conditions
</label>
</div>
</div>
<div class="form-group">
<a href="completed.php" class="btn btn-primary btn-block mt-5">Complete Delivery</a>
</div>
</div>
</div>
</div>
</div>
<?php include("../footer.php");?>
</body>
</html>