<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>POS System - Login</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body class="login-page">
<div class="login-container">
<div class="login-box">
<div class="login-header">
<h1>POS System</h1>
<p>Point of Sale & Inventory Management</p>
</div>
<div class="login-form">
<form id="loginForm">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Enter your username" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Login</button>
</div>
<div class="login-message" id="loginMessage"></div>
</form>
</div>
</div>
</div>
<div id="notification-container"></div>
<script src="assets/js/config.js"></script>
<script src="assets/js/login.js"></script>
</body>
</html>