diff --git a/public/training.html b/public/training.html index 55b53da..f762240 100644 --- a/public/training.html +++ b/public/training.html @@ -34,6 +34,16 @@
Word-for-word openers built on curiosity, why you ask for an opinion instead of a decision, how the promo tools arrive pre-loaded with your link — and the art of sending it and shutting up.
When the lessons say "share a short video," these are the videos. Pick the angle that fits the person you're texting:
+Open from your dashboard and every message arrives with your personal invite link already in it.
Calm, honest answers to the big three: "isn't this a pyramid?", "I don't have the money," and "I don't know crypto." The goal is never to win — it's to answer honestly and let them decide.
Getting your two is half the Method. Module 2 teaches the half nobody else does — turning you into their coach:
diff --git a/public/training.js b/public/training.js index a1e8496..1e0bb90 100644 --- a/public/training.js +++ b/public/training.js @@ -12,3 +12,7 @@ fetch('/api/public/config').then(function(r){return r.json()}).then(function(c){ var el=document.getElementById('fundUsdNote'); if(el&&c.polUsd>0){var pol=(c.premiumEntryPol||362)+23;el.textContent=' — about $'+Math.round(pol*c.polUsd)+' at today’s price';} }).catch(function(){}); + +// carry the member's saved id onto tools links so promo assets arrive personalized +try{var tid=localStorage.getItem('rmc.toolsId')||localStorage.getItem('ctb.myId'); +if(tid&&/^\d+$/.test(tid))document.querySelectorAll('a[href="/tools"]').forEach(function(a){a.href='/tools?id='+tid;});}catch(e){}