Password Reset Email Sent

If we found an account associated with that email address, we've sent a link to reset your password.

Reset Password

document.getElementById('yourButtonID').addEventListener('click', function() { fetch('/create-customer-portal-session', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ customer_id: 'stripe_customer_id', // Replace this with dynamic customer ID data }), }) .then((response) => response.json()) .then((data) => { window.location.href = data.url; // Redirect to the portal }) .catch((error) => console.error('Error:', error)); });