-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Created user registration screen - Added redirect to login screen See #4
- Loading branch information
Showing
2 changed files
with
45 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Ride My Way</title> | ||
<link rel="stylesheet" href="../../assets/css/index.css"> | ||
</head> | ||
<body> | ||
<main> | ||
<div class="width-600 center sign-in-box"> | ||
<div class="text-center"> | ||
<h2>Sign Up</h2> | ||
</div> | ||
<div class=""> | ||
<form class="" action="" method="post"> | ||
<label for="loginInput" class="input-label mb-20">Email address or mobile number</label> | ||
<div class="spacer"> | ||
<input type="text" name="user" id="loginInput" value="" placeholder="Email or Phonenumber" class="input-box"><br> | ||
</div> | ||
<label for="loginPassword" class="input-label mb-20">Password</label> | ||
<div class="spacer"> | ||
<input type="text" name="password" id="loginPassword" value="" placeholder="Password" class="input-box"><br> | ||
</div> | ||
<label for="loginPasswordConfirm" class="input-label mb-20">Confirm Password</label> | ||
<div class="spacer"> | ||
<input type="text" name="re-password" id="loginPasswordConfirm" value="" placeholder="Confirm Password" class="input-box"><br> | ||
</div> | ||
<a href="#"> <button type="button" name="button" class="input-button">Sign Up</button> </a> | ||
</form> | ||
</div> | ||
|
||
<div class=""> | ||
<div class="bottom-links text-left width-50"> | ||
Already have an account? | ||
<a href="../../index.html">Sign In</a> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
</main> | ||
</body> | ||
</html> |