Sign up for DiscoGenie

Start your 3-call free trial today.

Already have an account?

Log in
By signing up, you agree to our Terms of Service and Privacy Policy.
'); // const elements = stripe.elements(); // Create card element // const cardElement = elements.create('card', { // style: { // base: { // color: '#32325d', // fontFamily: '"Helvetica Neue", Helvetica, sans-serif', // fontSmoothing: 'antialiased', // fontSize: '16px', // '::placeholder': { // color: '#aab7c4' // } // }, // invalid: { // color: '#fa755a', // iconColor: '#fa755a' // } // } // }); // Mount the card element // cardElement.mount('#card-element'); // Handle form submission // const form = document.getElementById('signup-form'); // const submitButton = document.getElementById('submit-button'); // const cardErrors = document.getElementById('card-errors'); // form.addEventListener('submit', async function(event) { // event.preventDefault(); // submitButton.disabled = true; // submitButton.textContent = 'Processing...'; // cardErrors.textContent = ''; // Clear any previous errors // try { // // Create payment method // const { setupIntent, error } = await stripe.confirmCardSetup( // '', // { // payment_method: { // card: cardElement, // billing_details: { // email: document.getElementById('user_email').value // } // } // } // ); // if (error) { // throw error; // } // // Set payment method ID and submit form // document.getElementById('payment_method_id').value = setupIntent.payment_method; // form.submit(); // } catch (error) { // // Show error to customer // cardErrors.textContent = error.message; // submitButton.disabled = false; // submitButton.textContent = 'Start Free Trial'; // } // }); }); %>