Index HTML
Index HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="login-container">
<div class="login-header">
<h2>Welcome Back</h2>
<p>Please login to continue</p>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-options">
<label class="remember-me">
<input type="checkbox" name="remember">
Remember me
</label>
<a href="#" class="forgot-password">Forgot password?</a>
</div>
<script src="script.js"></script>
</body>
</html>