-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Confirm Password the the tourist registration page and also add…
…ed eye iconusing font awesome for toggling the visibility of the passwords
- Loading branch information
Niharika Goulikar
committed
Jan 26, 2024
1 parent
40068a6
commit 585e6ab
Showing
5 changed files
with
90 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,13 +6,16 @@ | |
<title>Firstspot | SignUp</title> | ||
<link rel="stylesheet" href="./login.css"> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> | ||
|
||
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"> | ||
|
||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<style> | ||
body{ | ||
body { | ||
background-image: url(/images/signup-bg2.jpeg); | ||
} | ||
</style> | ||
|
@@ -21,12 +24,25 @@ | |
<body> | ||
<!-- ///////////////////////////jayesh new work/////////////////////////// --> | ||
|
||
<div id="testDiv" class="mb-5"> | ||
<div id="testDiv" class="mb-5-register"> | ||
<h3 class="mb-3">Tourist Sign Up</h3> | ||
<input type="text" placeholder="Full name" id="nameInp" class="form-control mb-3"> | ||
<input type="text" placeholder="Email" id="emailInp" class="form-control mb-3"> | ||
<input type="text" placeholder="Email" id="emailInp" class="form-control mb-3 "> | ||
<input type="text" placeholder="Username" id="userInp" class="form-control mb-3"> | ||
<input type="password" placeholder="Password" id="passInp" class="form-control mb-3"><br> | ||
<div class="password-container"> | ||
<input type="password" placeholder="Password" id="passInp" class="form-control mb-3 password"> | ||
<span id="togglePassword" class="togglePassword"> | ||
<i class="fas fa-eye" id="eyeIcon"></i> | ||
</span> | ||
</div> | ||
<div class="password-container"> | ||
<input type="password" placeholder="Confirm Password" id="confirmPassInp" | ||
class="password form-control mb-3"> | ||
<span id="toggleConfirmPassword" class="togglePassword"> | ||
<i class="fas fa-eye" id="confirmEyeIcon"></i> | ||
</span> | ||
</div> | ||
<br> | ||
<button type="text" id="sub_btn" class="btn w-100 btn-outline-primary mb-3">Sign up</button> | ||
<a href="./login.html" class="badge badge-secondary py-1 w-100"><br>Already have an account?<br></a> | ||
</div> | ||
|
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