-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathitem_stock.php
32 lines (32 loc) · 1.16 KB
/
item_stock.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<title>DZ TBLogging rolling item stock</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.5.0/darkly/bootstrap.min.css"
integrity="sha256-MwJT4aoRf8awkXH2gl6jjykb0GW7x7QeffW2n4608a0=" crossorigin="anonymous"/>
<link rel="stylesheet" href="style.min.css"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<?php
require_once('class.php');
$dz = new dzTraderBankLogging();
if ($dz->mainViewSystem()) {//Is admin system in use or everyone can view
$dz->navBar('ITEM_STOCK_TABLE');
$dz->itemStockTablePreface();
$dz->itemStockTable();
$dz->footerText();
} else {
$dz->loginButtonPressed();//Login button was pressed
$dz->unAuthOutputs();//Not an admin OR login is required
}
?>
</div>
</div>
</div>
</body>
</html>