This commit is contained in:
2025-01-29 18:22:58 +05:30
parent 8aaea4bd32
commit b4001596d3
207 changed files with 13267 additions and 2341 deletions

View File

@@ -0,0 +1,13 @@
function storeEmailAndContinue() {
// Get the email entered by the user
var email = document.getElementById('email').value;
// Store the email in sessionStorage
sessionStorage.setItem('userEmail', email);
// Redirect to the next step
location.href = 'forgot_pass_step_two.php';
}
// Retrieve the email from sessionStorage and display it
document.getElementById('userEmail').textContent = sessionStorage.getItem('userEmail') || 'hygeonhealth@example.com';