HTML
HTML
DOCTYPE html>
<html>
<H3><CENTER>INVENTORY CONTROL SYSTEM</CENTER></H3>
<head>
<title>Login - Inventory Management System</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: white;
}
.container {
max-width: 400px;
margin: 50px auto;
padding: 20px;
background-color:yellow;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
input[type="text"], input[type="password"] {
width: 100%;
margin: 10px;
box-sizing: border-box;
}
button {
background-color:green;
color:white;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h2>Login</h2>
<form action="login.php" method="post">
<input type="text" name="login_id" placeholder="Login ID" required>
<input type="password" name="password" placeholder="Password" required>
<CENTER><button type="submit">Sign In</button>
</form>
</div>
</body>
</html>