Files
BPIT-ATTENDANCE/nakul/home/login.html
2024-06-03 16:43:53 +03:00

36 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Login</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
<a href="signup.html">Sign Up</a>
</nav>
</header>
<main>
<form action="#" method="POST">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br>
<button type="submit">Login</button>
</form>
</main>
<footer>
<p>&copy; 2024 Your Company</p>
</footer>
</body>
</html>