26 lines
782 B
HTML
26 lines
782 B
HTML
|
<!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>
|