26
This commit is contained in:
@@ -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>
|
@@ -31,3 +31,9 @@ main {
|
||||
.options a:hover {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 5px 10px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
Reference in New Issue
Block a user