23 lines
917 B
PHP
23 lines
917 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Inventory Management System</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Roboto+Slab:wght@700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header class="header">
|
|
<h1>Inventory Management System</h1>
|
|
</header>
|
|
<div style="text-align:center; padding: 4rem 0;">
|
|
<h2>Welcome!</h2>
|
|
<p>You can start by viewing the inventory or adding a new item.</p>
|
|
<a href="inventory_list.php" class="btn btn-primary">View Inventory</a>
|
|
<a href="add_item.php" class="btn" style="background-color: #3498DB;">Add New Item</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |