-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from pastore99/24-bugfix-resolve-password-rese…
…t-in-login-page-not-hidden-until-needed 24 bugfix resolve password reset in login page not hidden until needed
- Loading branch information
Showing
4 changed files
with
114 additions
and
29 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 |
---|---|---|
|
@@ -18,25 +18,25 @@ | |
</div> | ||
<input class="formInput" type="email" id="email" name="email" placeholder="[email protected]" required> | ||
<div class="icon iconRight"> | ||
<img hidden id="validEmail" src="../images/valid.svg" alt="emailIcon"> | ||
<img hidden id="invalidEmail" src="../images/invalid.svg" alt="emailIcon"> | ||
<img id="validEmail" src="../images/valid.svg" alt="validEmail" class="hiddenClass"> | ||
<img id="invalidEmail" src="../images/invalid.svg" alt="invalidEmail" class="hiddenClass"> | ||
</div> | ||
</div> | ||
|
||
<br> | ||
<div class="inputDiv"> | ||
<div class="icon iconLeft"> | ||
<img src="../images/passwordIcon.svg" alt="emailIcon"> | ||
<img src="../images/passwordIcon.svg" alt="passwordIcon"> | ||
</div> | ||
<input class="formInput" type="password" id="password" name="password" placeholder="Password" required> | ||
<div class="icon iconRight"> | ||
<button hidden class="togglePassword" id="hidePassword"><img src="../images/hidePassword.svg" alt="ShowPasswordIcon"></button> | ||
<button class="togglePassword" id="showPassword"><img src="../images/showPassword.svg" alt="ShowPasswordIcon"></button> | ||
<button class="togglePassword hiddenClass" id="hidePassword"><img src="../images/hidePassword.svg" alt="hidePasswordIcon"></button> | ||
<button class="togglePassword hiddenClass" id="showPassword"><img src="../images/showPassword.svg" alt="showPasswordIcon"></button> | ||
</div> | ||
</div> | ||
<br> | ||
<div id="loginForgot"> | ||
<a href="#">Password Dimenticata?</a> | ||
<a href="#" data-bs-toggle="modal" data-bs-target="#resetPasswordModal">Password Dimenticata?</a> | ||
</div> | ||
<button type="submit" value="Login" id="loginButton">Login</button> | ||
</form> | ||
|
@@ -73,9 +73,10 @@ | |
</div> | ||
</div> | ||
</div> | ||
<link rel="stylesheet" href="../CSS/login.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> | ||
<script src="../JS/login.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script> | ||
<link rel="stylesheet" href="../CSS/login.css"> | ||
</body> | ||
</html> |