This commit is contained in:
Aritra Banik 2024-06-05 13:50:54 +05:30
parent aeac9b9932
commit 3727208646

View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Faculty Login</title>
@css '/templates/style.css'
</head>
<body>
<header>
<h1>Faculty Login</h1>
</header>
<main>
<section class="login">
<form action="/controller/faculty/create" method="post">
<label for="firstname">First Name:</label>
<input name="firstname" type="text" id="firstname" required>
<label for="lastname">Last Name:</label>
<input name="lastname" type="text" id="lastname" required>
<label for="email">Email:</label>
<input name="email" type="email" id="email" required>
<label for="password">Password:</label>
<input name="password" type="password" id="password" required>
<button type="submit">Sign Up</button>
</form>
</section>
</main>
</body>
</html>