This commit is contained in:
2024-07-18 00:04:03 +05:30
parent 5f91e90f7b
commit 33a9aa88a1
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<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>
<button>Login</button>
</form>
</section>
</main>