mirror of
https://github.com/xodivorce/xeorl.git
synced 2025-12-19 16:23:01 +05:30
8 lines
308 B
JavaScript
8 lines
308 B
JavaScript
function storeEmailAndContinue() {
|
|
var email = document.getElementById('email').value;
|
|
sessionStorage.setItem('userEmail', email);
|
|
location.href = 'forgot_pass_step_two.php';
|
|
}
|
|
|
|
document.getElementById('userEmail').textContent = sessionStorage.getItem('userEmail') || 'supportxeorl@example.com';
|