mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-19 17:52:25 +03:00
36 lines
1.0 KiB
HTML
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>© 2024 Your Company</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|