This checkout process will setup your new payment account for Brainwave Media hosting and website management.

When you click the checkout button, you will be directed to a secure payment page where you can enter the credit card you wish to associate with your account. That payment method will be billed each month on the same date.

Thank you for your business.

<!-- Load Stripe.js on your website. --><!-- [et_pb_line_break_holder] --><script src="https://js.stripe.com/v3"></script><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- Create a button that your customers click to complete their purchase. Customize the styling to suit your branding. --><!-- [et_pb_line_break_holder] --><button<!-- [et_pb_line_break_holder] --> style="background-color:#d00205;color:#FFF;padding:15px;border:0;border-radius:4px;font-size:18px;box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);"<!-- [et_pb_line_break_holder] --> id="checkout-button-price_HJbtVvJQ6j9xWY"<!-- [et_pb_line_break_holder] --> role="link"<!-- [et_pb_line_break_holder] -->><!-- [et_pb_line_break_holder] --> CHECKOUT<!-- [et_pb_line_break_holder] --></button><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><div id="error-message"></div><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->(function() {<!-- [et_pb_line_break_holder] --> var stripe = Stripe('pk_live_zZvT3TGKsMgvDTrz6sXt6rKf000jkWECQp');<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> var checkoutButton = document.getElementById('checkout-button-price_HJbtVvJQ6j9xWY');<!-- [et_pb_line_break_holder] --> checkoutButton.addEventListener('click', function () {<!-- [et_pb_line_break_holder] --> // When the customer clicks on the button, redirect<!-- [et_pb_line_break_holder] --> // them to Checkout.<!-- [et_pb_line_break_holder] --> stripe.redirectToCheckout({<!-- [et_pb_line_break_holder] --> lineItems: [{price: 'price_HJbtVvJQ6j9xWY', quantity: 1}],<!-- [et_pb_line_break_holder] --> mode: 'subscription',<!-- [et_pb_line_break_holder] --> // Do not rely on the redirect to the successUrl for fulfilling<!-- [et_pb_line_break_holder] --> // purchases, customers may not always reach the success_url after<!-- [et_pb_line_break_holder] --> // a successful payment.<!-- [et_pb_line_break_holder] --> // Instead use one of the strategies described in<!-- [et_pb_line_break_holder] --> // https://stripe.com/docs/payments/checkout/fulfillment<!-- [et_pb_line_break_holder] --> successUrl: 'https://brainwavemediaonline.com/success',<!-- [et_pb_line_break_holder] --> cancelUrl: 'https://brainwavemediaonline.com/tbtsml-checkout',<!-- [et_pb_line_break_holder] --> })<!-- [et_pb_line_break_holder] --> .then(function (result) {<!-- [et_pb_line_break_holder] --> if (result.error) {<!-- [et_pb_line_break_holder] --> // If `redirectToCheckout` fails due to a browser or network<!-- [et_pb_line_break_holder] --> // error, display the localized error message to your customer.<!-- [et_pb_line_break_holder] --> var displayError = document.getElementById('error-message');<!-- [et_pb_line_break_holder] --> displayError.textContent = result.error.message;<!-- [et_pb_line_break_holder] --> }<!-- [et_pb_line_break_holder] --> });<!-- [et_pb_line_break_holder] --> });<!-- [et_pb_line_break_holder] -->})();<!-- [et_pb_line_break_holder] --></script><!-- [et_pb_line_break_holder] -->