top of page

Sign Up Here 

Welcome to the first day of your new life!

Follow these 3 simple steps to get started:
 

Step One

Create your account

Follow the link to our Login Page where you can create your account.  

​

Once your account is set up, return here to continue with step 2 

Step Two

Select and purchase your plan

Head over to our Pathways Page, choose the plan that's right for you, and complete your purchase. 

 

Once you've done that, return to this page and continue with step 2.

Step Three

Verify your identity

Complete your ID and background check through our trusted provider.  Once your account is active, your profile will be unlocked and you'll receive an onboarding email ( please check your spam inbox.) 

 

At this point your payment will be processed

bottom of page
import wixUsers from 'wix-users'; import wixData from 'wix-data'; $w.onReady(function () { const user = wixUsers.currentUser; // Only run if user is logged in if (user.loggedIn) { const userId = user.id; // Generate a short User ID: usr + last 4 chars of Wix user ID const shortId = "usr" + userId.slice(-4); // Update member profile if User ID is empty wixData.query("Members/PrivateMembersData") .eq("_id", userId) .find() .then((results) => { if (results.items.length > 0) { const member = results.items[0]; if (!member.userID) { // only assign if empty member.userID = shortId; wixData.update("Members/PrivateMembersData", member) .catch((err) => console.error("Error updating User ID:", err)); } } }); } });