59 lines
1.1 KiB
PHP
59 lines
1.1 KiB
PHP
<html>
|
|
<head>
|
|
<title>Manufacturing</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
<link rel="shortcut icon" href="http://lasuca.com/images/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="center">
|
|
|
|
<div class="header">
|
|
<h1>LASUCA CONTROLS</h1>
|
|
<p>Mill Lab Test Spreadsheet</p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-3 menu">
|
|
<ul>
|
|
<li>
|
|
<a href="overview.php">Overview</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
|
|
<div class="col-12">
|
|
|
|
<?php // phpcs:ignoreFile
|
|
|
|
require __DIR__ . '/session.php';
|
|
require __DIR__ . '/userAccess.php';
|
|
|
|
$pageTitle = 'Mill Lab Tests (Alt)';
|
|
$pageSubtitle = 'Spreadsheet view';
|
|
$pageDescription = 'Alternate mill laboratory spreadsheet view within the LASUCA dashboard.';
|
|
|
|
require __DIR__ . '/includes/layout/header.php';
|
|
require __DIR__ . '/menuinclude.php';
|
|
?>
|
|
|
|
<div class="app-content">
|
|
<section class="data-panel">
|
|
<?php include __DIR__ . '/bigsheet.php'; ?>
|
|
</section>
|
|
</div>
|
|
|
|
<?php require __DIR__ . '/includes/layout/footer.php'; ?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php include 'footer.php';?>
|
|
</div>
|
|
</body>
|
|
</html>
|