300HR - 6 Installments

$950.00 USD every month +
$20.00 USD setup fee

Pay with 6 consecutive monthly payments (auto-debit).

  • Access to all modules & materials
  • Guaranteed Spot *space is limited*

  • Continued support and feedback from your expert module teachers

     

*All modules are non-refundable. You can make up to a maximum of 3 modules at a future offering

Account Information

Need Help? Email Customer Support

Next

Payment
Payment
PayPal

Complete

Stripe::Checkout::Session.create({ mode: 'payment', payment_method_types: ['card'], payment_method_types: ['card', 'affirm'], line_items: [{ price_data: { currency: 'usd', product_data: { name: 'T-shirt', }, # Make sure the total amount fits within Affirm's transaction amount limits unit_amount: 5000, }, quantity: 1, }], shipping_address_collection: { # Shipping address is optional but recommended to pass in # Specify which shipping countries Checkout should provide as options for shipping locations allowed_countries: ['US'], }, # If you already have the shipping address, provide it in payment_intent_data: # payment_intent_data: { # shipping: { # name: 'Jenny Rosen', # address: { # line1: '1234 Main Street', # city: 'San Francisco', # state: 'CA', # country: 'US', # postal_code: '94111', # }, # }, # }, success_url: 'https://example.com/success', cancel_url: 'https://example.com/cancel', })