0% found this document useful (0 votes)
4 views

HTML

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

HTML

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

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>

You might also like