forked from ANSHIKA-26/WordWise
-
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
Showing
9 changed files
with
215 additions
and
4 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 |
---|---|---|
|
@@ -65,6 +65,9 @@ <h2>Login</h2> | |
<input type="password" id="loginPsw" placeholder="Enter Password" name="psw" required minlength="6"> | ||
<i class="bi bi-eye eye-icon" id="toggleLoginPassword" onclick="togglePasswordVisibility('loginPsw', 'toggleLoginPassword')"></i> | ||
</div> | ||
<div class="forgot"> | ||
<a href="javascript:void(0);" onclick="openForgotPassword()">Forgot Password?</a> | ||
</div> | ||
|
||
<button type="submit" class="btn">LOGIN</button> | ||
<button type="button" class="btn cancel" onclick="closeForm('login')">CLOSE</button> | ||
|
@@ -103,6 +106,20 @@ <h2>Signup</h2> | |
</form> | ||
</div> | ||
|
||
<!-- Forgot Password Modal --> | ||
<div id="forgot-password-modal" class="modal"> | ||
<div class="form-container modal-content"> | ||
<h2>Forgot Password</h2> | ||
<p>Please enter your email address to reset your password.</p> | ||
|
||
<label for="email">Email Address</label> | ||
<input type="email" id="email" placeholder="Enter your email" required /> | ||
|
||
<button class="btn" onclick="submitForgotPassword()">Submit</button> | ||
<button class="btn cancel" onclick="closeForgotPasswordModal()">Cancel</button> | ||
</div> | ||
</div> | ||
|
||
<!-- Bootstrap Icons and Script for Eye Icon Functionality --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<script> | ||
|
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 |
---|---|---|
|
@@ -119,6 +119,9 @@ <h2>Login</h2> | |
<input type="password" id="loginPsw" placeholder="Enter Password" name="psw" required minlength="6"> | ||
<i class="bi bi-eye eye-icon" id="toggleLoginPassword" onclick="togglePasswordVisibility('loginPsw', 'toggleLoginPassword')"></i> | ||
</div> | ||
<div class="forgot"> | ||
<a href="javascript:void(0);" onclick="openForgotPassword()">Forgot Password?</a> | ||
</div> | ||
|
||
<button type="submit" class="btn">LOGIN</button> | ||
<button type="button" class="btn cancel" onclick="closeForm('login')">CLOSE</button> | ||
|
@@ -156,6 +159,19 @@ <h2>Signup</h2> | |
<button type="button" class="btn cancel" onclick="closeForm('signup')">CLOSE</button> | ||
</form> | ||
</div> | ||
<!-- Forgot Password Modal --> | ||
<div id="forgot-password-modal" class="modal"> | ||
<div class="form-container modal-content"> | ||
<h2>Forgot Password</h2> | ||
<p>Please enter your email address to reset your password.</p> | ||
|
||
<label for="email">Email Address</label> | ||
<input type="email" id="email" placeholder="Enter your email" required /> | ||
|
||
<button class="btn" onclick="submitForgotPassword()">Submit</button> | ||
<button class="btn cancel" onclick="closeForgotPasswordModal()">Cancel</button> | ||
</div> | ||
</div> | ||
|
||
<!-- Bootstrap Icons and Script for Eye Icon Functionality --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
|
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 |
---|---|---|
|
@@ -62,7 +62,9 @@ <h2>Login</h2> | |
<input type="password" id="loginPsw" placeholder="Enter Password" name="psw" required minlength="6"> | ||
<i class="bi bi-eye eye-icon" id="toggleLoginPassword" onclick="togglePasswordVisibility('loginPsw', 'toggleLoginPassword')"></i> | ||
</div> | ||
|
||
<div class="forgot"> | ||
<a href="javascript:void(0);" onclick="openForgotPassword()">Forgot Password?</a> | ||
</div> | ||
<button type="submit" class="btn">LOGIN</button> | ||
<button type="button" class="btn cancel" onclick="closeForm('login')">CLOSE</button> | ||
</form> | ||
|
@@ -99,7 +101,19 @@ <h2>Signup</h2> | |
<button type="button" class="btn cancel" onclick="closeForm('signup')">CLOSE</button> | ||
</form> | ||
</div> | ||
<!-- Forgot Password Modal --> | ||
<div id="forgot-password-modal" class="modal"> | ||
<div class="form-container modal-content"> | ||
<h2>Forgot Password</h2> | ||
<p>Please enter your email address to reset your password.</p> | ||
|
||
<label for="email">Email Address</label> | ||
<input type="email" id="email" placeholder="Enter your email" required /> | ||
|
||
<button class="btn" onclick="submitForgotPassword()">Submit</button> | ||
<button class="btn cancel" onclick="closeForgotPasswordModal()">Cancel</button> | ||
</div> | ||
</div> | ||
<!-- Bootstrap Icons and Script for Eye Icon Functionality --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<script> | ||
|
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 |
---|---|---|
|
@@ -86,7 +86,9 @@ <h2>Login</h2> | |
<input type="password" id="loginPsw" placeholder="Enter Password" name="psw" required minlength="6"> | ||
<i class="bi bi-eye eye-icon" id="toggleLoginPassword" onclick="togglePasswordVisibility('loginPsw', 'toggleLoginPassword')"></i> | ||
</div> | ||
|
||
<div class="forgot"> | ||
<a href="javascript:void(0);" onclick="openForgotPassword()">Forgot Password?</a> | ||
</div> | ||
<button type="submit" class="btn">LOGIN</button> | ||
<button type="button" class="btn cancel" onclick="closeForm('login')">CLOSE</button> | ||
</form> | ||
|
@@ -124,6 +126,19 @@ <h2>Signup</h2> | |
</form> | ||
</div> | ||
|
||
<!-- Forgot Password Modal --> | ||
<div id="forgot-password-modal" class="modal"> | ||
<div class="form-container modal-content"> | ||
<h2>Forgot Password</h2> | ||
<p>Please enter your email address to reset your password.</p> | ||
|
||
<label for="email">Email Address</label> | ||
<input type="email" id="email" placeholder="Enter your email" required /> | ||
|
||
<button class="btn" onclick="submitForgotPassword()">Submit</button> | ||
<button class="btn cancel" onclick="closeForgotPasswordModal()">Cancel</button> | ||
</div> | ||
</div> | ||
<!-- Bootstrap Icons and Script for Eye Icon Functionality --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<script> | ||
|
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