n1/faculty_login.html

26 lines
782 B
HTML
Raw Normal View History

2024-05-26 05:48:13 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Faculty Login</title>
</head>
<body>
<header>
<h1>Faculty Login</h1>
</header>
<main>
<form action="process_login.php" method="post"> <!-- Replace with actual server-side script -->
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</main>
</body>
</html>