mirror of
https://github.com/xodivorce/xeorl.git
synced 2025-12-20 00:29:34 +05:30
14 lines
498 B
JavaScript
14 lines
498 B
JavaScript
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';
|