Copy this prompt and send it to Claude, ChatGPT or any AI to generate your custom page instantly. Replace the last line with your design description.
📋 Prompt — copy and send to any AI
Build a complete HTML page integrated with the Moltrade SDK. The SDK is loaded with a single tag: <script src="https://moltrade.app/sdk.php"></script> — it provides all functions automatically, no other JS files needed.
The page MUST include the following HTML elements with these exact IDs:
WALLET:
- id="connect" → <button> — connect/disconnect wallet
- id="msgerro" → any element — error and status messages
- id="balance" → any element — BNB balance display
DEPOSIT FORM:
- id="amountInput" → <input type="number"> — USDT amount
- id="referinput" → <input type="hidden"> — referral address
- id="referid" → any element — shows referral inviter text
APPROVE STEP:
- id="approve-label" → <span> INSIDE a <button onclick="approveUSDT()">
- id="approve-limit" → any element — shows approval amount
CONFIRM DEPOSIT STEP:
- id="buyText" → <span> INSIDE a <button onclick="depositUSDT()">
- id="confirm-status" → any element — shows PENDING/CONFIRMED/FAILED
DASHBOARD:
- id="lock" → total deposited in USDT
- id="db-claimable" → live claimable earnings (updates every second automatically)
- id="sexc" → total already claimed
- id="refe" → referral earnings
- id="ref-earned" → referral earnings with $ prefix
- id="rewards" → claim button label text
- id="claimBtnText" → <span> inside <button onclick="claimRewards()">
- id="withdrawBtnText" → <span> inside <button onclick="withdrawCapital()">
- id="lt-winrate" → win rate display
- class="stat-winrate" → all elements with this class also receive win rate
WITHDRAW:
- id="selectOptions" → <select> — deposit dropdown (auto-populated)
- id="db-wd-id" → selected deposit ID
- id="db-wd-amt" → selected deposit amount
- id="db-wd-earn" → earnings on selected deposit
- id="db-wd-total" → total to receive
- id="db-history-tbody" → <tbody> — history table (auto-populated)
REFERRAL:
- id="referralLink" → <input readonly> — auto-filled with referral link
- id="refaddress" → <input> — connected wallet address
COPY TRADE:
- id="ct-lock-banner" → banner shown when deposit < 20 USDT (start hidden)
- id="ct-current-dep" → user current deposit
- id="ct-missing" → how much more is needed
- Buttons: <button onclick="enableCopyTrade()"> and <button onclick="disableCopyTrade()">
IMPORTANT RULES:
1. The <script src="https://moltrade.app/sdk.php"></script> tag must be the LAST script before </body>
2. Do NOT add any other Web3 or jQuery scripts — the SDK loads them automatically
3. The approve-label and buyText MUST be <span> elements inside their buttons, not the button itself
4. selectOptions and db-history-tbody start empty — they are auto-filled after wallet connects
5. ct-lock-banner should start with display:none
DESIGN: [DESCRIBE YOUR DESIRED DESIGN HERE — e.g. "dark cyberpunk theme with neon green accents", "clean minimalist white dashboard", "futuristic trading terminal aesthetic"]