Stripe Payment Setup
Instructions for Billie

To activate real payment processing, follow these steps to create Stripe Payment Links and connect them to the application form.

01

Create a Stripe Account

Go to stripe.com and create a free account. Complete your business verification to accept real payments.

02

Create Two Payment Links

In your Stripe Dashboard → Payment Links → Create Link. Create one for $79/month (Founding Member) and one for $249/month (Standard Member). Set both as recurring monthly subscriptions.

03

Set Success URL

In each Payment Link settings, set the 'After payment' redirect URL to: https://yourdomain.com/thank-you

04

Copy the Payment Link URLs

Each link looks like: https://buy.stripe.com/xxxx. Copy both URLs.

05

Update the Apply Page

In client/src/pages/Apply.tsx, find the STRIPE_LINKS object at the top and replace the placeholder URLs with your real Stripe Payment Link URLs.

06

Uncomment the Redirect

In the handleSubmit function in Apply.tsx, uncomment the line: window.location.href = stripeUrl; and comment out the navigate('/thank-you') line. This will redirect users to Stripe to complete payment.