From 853e4736c91db0e042d9544da92d404d71685bc3 Mon Sep 17 00:00:00 2001 From: martbost Date: Tue, 18 Aug 2026 07:47:12 -0500 Subject: [PATCH] Reword /start steps for the wallet-connect join flow + dApp fallback link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Steps 4-6 rewritten for /join-now (connect wallet, sponsor auto-assigned, review+sign, land on dashboard, introduce yourself) instead of the old official- dApp instructions; step 1 now mentions Trust Wallet. Added a small secondary 'official RM Circle dApp' fallback link under the join button (carries the current sponsor's referral URL) for robustness — primary path stays /join-now. Co-Authored-By: Claude Opus 4.8 --- public/start.html | 10 +++++----- public/start.js | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/public/start.html b/public/start.html index 684b475..4029c85 100644 --- a/public/start.html +++ b/public/start.html @@ -5,13 +5,13 @@
Current placement

Use the sponsor shown on this page.

Team placements rotate as positions become qualified. Do not use an old screenshot or saved referral link.

-
RM Circle Premium Team Build Roadmap — core strategy, step-by-step guide, premium levels, and duplication formula
This roadmap is the plan every member follows — tap to view full size.
diff --git a/public/start.js b/public/start.js index 3d69de2..6fd0de2 100644 --- a/public/start.js +++ b/public/start.js @@ -14,6 +14,7 @@ async function load(){ document.getElementById('entryPol').textContent=c.premiumEntryPol; document.getElementById('entryPol2').textContent=c.premiumEntryPol; document.getElementById('joinButton').href='/join-now'; + {const dl=document.getElementById('dappJoinLink');if(dl&¤tSponsor.referralUrl){dl.href=currentSponsor.referralUrl;dl.classList.remove('hidden');}} document.getElementById('queueText').textContent=c.showQueueProgress?`${s.waitingCount} team placement${s.waitingCount===1?'':'s'} waiting behind the current sponsor.`:''; document.getElementById('supportBox').textContent=c.supportLabel||'Contact your team sponsor if you need help before joining.'; if(c.telegramUrl){const w=document.getElementById('supportLinkWrap'),a=document.getElementById('supportLink');a.href=c.telegramUrl;w.classList.remove('hidden')}