-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
edit the input types and wrap the forms inside main tags
Relates #28
- Loading branch information
1 parent
cafb583
commit d99324a
Showing
2 changed files
with
47 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
<form action="login" method="POST"> | ||
<div> | ||
<label for="username">Username</label> | ||
<input type="text" name="username" id="login__username"> | ||
</div> | ||
<main> | ||
<form action="login" method="POST"> | ||
<div> | ||
<label for="username">Username</label> | ||
<input type="text" name="username" id="login__username"> | ||
</div> | ||
|
||
<div> | ||
<label for="password">Password</label> | ||
<input type="text" name="password" id="login__password"> | ||
</div> | ||
|
||
<div> | ||
<button type="submit" id="login__button">Login</button> | ||
</div> | ||
<div> | ||
<label for="password">Password</label> | ||
<input type="password" name="password" id="login__password"> | ||
</div> | ||
<div> | ||
<button type="submit" id="login__button">Login</button> | ||
</div> | ||
|
||
</form> | ||
</form> | ||
</main> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,38 @@ | ||
<form action="/signup" method="POST"> | ||
<div> | ||
<label for="username">Username</label> | ||
<input type="text" name="username" id="signup__username"> | ||
</div> | ||
<main> | ||
<form action="/signup" method="POST"> | ||
<div> | ||
<label for="username">Username</label> | ||
<input type="text" name="username" id="signup__username"> | ||
</div> | ||
|
||
<div> | ||
<label for="email">Email</label> | ||
<input type="text" name="email" id="signup__email"> | ||
</div> | ||
<div> | ||
<label for="email">Email</label> | ||
<input type="email" name="email" id="signup__email"> | ||
</div> | ||
|
||
<div> | ||
<label for="password">Password</label> | ||
<input type="text" name="password" id="signup__password"> | ||
</div> | ||
<div> | ||
<label for="password">Password</label> | ||
<input type="password" name="password" id="signup__password"> | ||
</div> | ||
|
||
<div> | ||
<label for="confirm_password">Confirm Your Password</label> | ||
<input type="text" name="confirm_password" id="signup__confirmpassword"> | ||
</div> | ||
<div> | ||
<label for="confirm_password">Confirm Your Password</label> | ||
<input type="password" name="confirm_password" id="signup__confirmpassword"> | ||
</div> | ||
|
||
<div> | ||
<label for="mobile_no">Mobile Number</label> | ||
<input type="text" name="mobile_no" id="signup__mobilenomber"> | ||
<div> | ||
<label for="mobile_no">Mobile Number</label> | ||
<input type="number" name="mobile_no" id="signup__mobilenomber"> | ||
|
||
</div> | ||
</div> | ||
|
||
<div> | ||
<label for="date_of_birth">Date Of Birth</label> | ||
<input type="text" name="date_of_birth" id="signup__dateofbirth"> | ||
</div> | ||
<div> | ||
<label for="date_of_birth">Date Of Birth</label> | ||
<input type="date" name="date_of_birth" id="signup__dateofbirth"> | ||
</div> | ||
|
||
<div> | ||
<button type="submit" id="signup__button">Sign Up</button> | ||
</div> | ||
</form> | ||
<div> | ||
<button type="submit" id="signup__button">Sign Up</button> | ||
</div> | ||
</form> | ||
</main> |