Reset Password

Enter your email address and we'll send you a link to reset your password if the account exists.

Back to sign in
// Light mode standard function showToast(msg) { var container = $('#cora-toast-container'); var toast = $('
').html(msg); container.append(toast); setTimeout(function() { toast.fadeOut(300, function() { $(this).remove(); }); }, 4000); } function handleForgotSubmit(e) { e.preventDefault(); var email = $('#forgot-email').val().trim(); var emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; if (!emailRegex.test(email)) { showToast('Please enter a valid email address.'); return; } $('#submit-btn').prop('disabled', true).text('Sending reset link...'); $.post('https://app.heycora.in/wp-admin/admin-ajax.php', { action: 'cora_ajax_forgot_password', email: email, nonce: 'be7f37c1ac' }, function(res) { // Security rule: Always show success message regardless of email existence showToast('If the email exists, a password reset link has been sent.'); setTimeout(function() { window.location.href = 'https://app.heycora.in/workspace/login'; }, 1500); }).fail(function() { showToast('Network error. Please try again.'); $('#submit-btn').prop('disabled', false).text('Send Reset Link'); }); }