Siteβ―Builder
Editing:
enrol.php
writable 0666
<?php /***************************************************************** * Oneβclick βBecome an Affiliateβ optβin *****************************************************************/ require_once __DIR__.'/../lib/auth.php'; require_once __DIR__.'/../lib/db.php'; require_login(); $me = current_user(); /* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ Already an affiliate β jump straight to portal ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */ if ($me['is_affiliate']) { header('Location: portal.php'); exit; } /* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ Handle POST ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */ $err = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (empty($_POST['agree'])) { $err = 'You must accept the terms.'; } else { /* mark this account as affiliate */ $db->prepare('UPDATE users SET is_affiliate = 1 WHERE id = ?') ->execute([$me['id']]); header('Location: portal.php'); exit; } } ?> <!doctype html> <title>Join the BestDealOnΒ Affiliate Program</title> <meta name=viewport content="width=device-width,initial-scale=1"> <style> *{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif} body{margin:0;background:#fafafa;color:#111;line-height:1.45} article{max-width:460px;margin:3rem auto;padding:0 1rem;text-align:center} h2{font-size:2rem;margin-top:0} label{display:flex;align-items:center;gap:.5rem;justify-content:center;font-size:.95rem} input[type=checkbox]{width:1.1rem;height:1.1rem;accent-color:#0066d6;cursor:pointer} button{display:block;width:100%;padding:.9rem 1rem;margin-top:1.25rem;background:#0073e6;color:#fff;border:0;border-radius:4px;font-size:1rem;font-weight:600;cursor:pointer} button:hover{background:#005fc2} a{color:#0066d6;text-decoration:none} a:hover{text-decoration:underline} .error{color:#c00;margin-top:1rem;font-weight:600} </style> <article> <h2>Earnβ―$20 for every Premium<br>signβup you refer</h2> <p>Share your personal link and start earning recurring revenue. It takes less than a minute.</p> <?php if ($err): ?> <p class=error><?= htmlspecialchars($err) ?></p> <?php endif ?> <form method=post> <label> <input type=checkbox name=agree value=1> I accept the <a href="/terms.html" target=_blank>affiliate terms</a>. </label> <button>Activate my referral code</button> </form> </article>
Save changes
Create folder
writable 0777
Create
Cancel