This commit is contained in:
2024-07-18 00:33:06 +05:30
parent 7bd7fceeca
commit 3357948954
2 changed files with 13 additions and 7 deletions

View File

@@ -9,17 +9,17 @@
</header>
<main>
<section class="login">
<form action="/controller/faculty/create" method="post">
<form method="post">
<label for="firstname">First Name:</label>
<input name="firstname" type="text" id="firstname" required>
<input name="fn" type="text" id="firstname" required>
<label for="lastname">Last Name:</label>
<input name="lastname" type="text" id="lastname" required>
<input name="ln" type="text" id="lastname" required>
<label for="email">Email:</label>
<input name="email" type="email" id="email" required>
<input name="em" type="email" id="email" required>
<label for="password">Password:</label>
<input name="password" type="password" id="password" required>
<button type="submit" id="button">Sign Up</button>
<button id="button" on:click={p}>Login</button>
<input name="pw" type="password" id="password" required>
<button type="submit">Sign Up</button>
<button on:click={p}>Login</button>
</form>
</section>
</main>

View File

@@ -31,3 +31,9 @@ main {
.options a:hover {
background-color: #eee;
}
button {
padding: 5px 10px;
border: none;
cursor: pointer;
}