Skip to content
Permalink
ae335aeb5c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
28 lines (22 sloc) 792 Bytes
<?php
require("../dbCon.php");
require("../commonFunctions.php");
?>
<html>
<head>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<div id="header">
<?php writeMenuAdm(basename($_SERVER['PHP_SELF'])); ?>
</div>
<div id='contentwrapper'>
<form action = "Report_Sales.php" class="form-group" style='display: block; margin: auto; width: 960px;'>
<input type="submit" value="Sales Report">
</form>
<form action = "Report_Inventory.php" class="form-group" style='display: block; margin: auto; width: 960px;'>
<input type="submit" value="Inventory Report">
</form>
</div>
</body>
</html>