-
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.
- Loading branch information
1 parent
30f84b8
commit 31c2ef9
Showing
4 changed files
with
120 additions
and
56 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
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
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
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,49 +1,64 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Register</title> | ||
<style> | ||
#span-first-name { | ||
color: red; | ||
} | ||
</style> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Register</title> | ||
<link rel="stylesheet" href="/style/style.css" /> | ||
<link href="https://fonts.googleapis.com/css?family=Nunito:400,300" rel="stylesheet" type="text/css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" /> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<div class="container"> | ||
<form class="form"> | ||
<div class="title"> | ||
<i class="fa-solid fa-pen-to-square"></i> | ||
<h2>Sign Up</h2> | ||
<form class="form"> | ||
<div class="form-group"> | ||
<label for="firstName">First Name:</label> | ||
<input type="text" id="firstName" name="firstName"> | ||
<span id="span-first-name"></span> | ||
</div> | ||
<div class="form-group"> | ||
<label for="lastName">Last Name:</label> | ||
<input type="text" id="lastName" name="lastName"> | ||
<span id="span-last-name"></span> | ||
</div> | ||
<div class="form-group"> | ||
<label for="email">Email Address:</label> | ||
<input type="email" id="email" name="email"> | ||
<span id="span-email"></span> | ||
</div> | ||
<div class="form-group"> | ||
<label for="password">Password:</label> | ||
<input type="password" id="password" name="password"> | ||
<span id="span-pw"></span> | ||
</div> | ||
<div class="form-group"> | ||
<label for="reEnterPassword">Re-enter Password:</label> | ||
<input type="password" id="reEnterPassword" name="reEnterPassword"> | ||
<span id="span-reEnter"></span> | ||
</div> | ||
<div class="form-group"> | ||
<input id="submit" type="submit" value="Register"> | ||
</div> | ||
</form> | ||
</div> | ||
<script src="js/register.js"></script> | ||
</div> | ||
|
||
<div class="form-group"> | ||
<div class="form-input"> | ||
<label for="firstName">First Name</label> | ||
<input type="text" id="firstName" name="firstName" placeholder="firstname" /> | ||
<span id="span-first-name"></span> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="form-input"> | ||
<label for="lastName">Last Name</label> | ||
<input type="text" id="lastName" name="lastName" placeholder="lastname" /> | ||
<span id="span-last-name"></span> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="form-input"> | ||
<label for="email">Email Address</label> | ||
<input type="email" id="email" name="email" placeholder="[email protected]" /> | ||
<span id="span-email"></span> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="form-input"> | ||
<label for="password">Password</label> | ||
<input type="password" id="password" name="password" placeholder="password" /> | ||
<span id="span-pw"></span> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="form-input"> | ||
<label for="reEnterPassword">Re-enter Password</label> | ||
<input type="password" id="reEnterPassword" name="reEnterPassword" placeholder="password" /> | ||
<span id="span-reEnter"></span> | ||
</div> | ||
</div> | ||
<div class="form-btn"> | ||
<input id="submit" type="submit" value="Sign Up" /> | ||
</div> | ||
</form> | ||
</div> | ||
<script type="module" src="js/register.js"></script> | ||
</body> | ||
|
||
</html> |