Diff -- /var/www/vhosts/3dshawn.com/affiliate.3dshawn.com/TEMPLATES/webstls_subscribe.html
Diff

/var/www/vhosts/3dshawn.com/affiliate.3dshawn.com/TEMPLATES/webstls_subscribe.html

added on local at 2026-07-01 13:48:10

Added
+76
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to 0f680a33786e
Restore this content →
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Subscribe &middot; $plan_name</title>
6 <link rel="stylesheet" href="/assets/css/site.css">
7 <style>:root { $theme_css_vars }</style>
8 <style>
9 body { background:var(--col-bg); color:var(--col-text); font-family:var(--font-ui,sans-serif); margin:0; }
10 .sub-wrap { max-width:560px; margin:0 auto; padding:60px 24px 80px; }
11 .sub-card { background:var(--col-surface-1); border:1px solid var(--col-border); border-radius:16px; padding:32px; }
12 h1 { font-family:var(--font-display,inherit); margin:0 0 6px; color:var(--col-text); }
13 .lead { color:var(--col-text-2); margin:0 0 24px; }
14 .price-strip { font-family:var(--font-mono,monospace); font-size:34px; font-weight:800; color:var(--col-accent-bright); }
15 .price-sub { font-size:14px; color:var(--col-text-3); margin-top:4px; }
16 .field { margin:14px 0; }
17 label { display:block; font-size:12px; color:var(--col-text-2); letter-spacing:0.5px; text-transform:uppercase; margin-bottom:4px; }
18 input { width:100%; padding:10px 12px; background:var(--col-surface-2); border:1px solid var(--col-border); color:var(--col-text); border-radius:8px; font-size:14px; box-sizing:border-box; }
19 button { width:100%; padding:14px; background:linear-gradient(135deg, var(--col-accent), var(--col-accent-bright)); color:#fff; border:0; border-radius:10px; font-size:15px; font-weight:700; cursor:pointer; margin-top:14px; }
20 button:hover { filter:brightness(1.05); }
21 .small { font-size:12px; color:var(--col-text-3); margin-top:14px; line-height:1.5; }
22 </style>
23</head>
24<body>
25<main class="sub-wrap">
26 <div class="sub-card">
27 <p style="font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--col-text-3);margin:0 0 8px">$store_name &middot; Subscribe</p>
28 <h1>$plan_name</h1>
29 <p class="lead">$plan_tagline</p>
30
31 <div class="price-strip">$price_label</div>
32 <div class="price-sub">every $cadence days &middot; $quota item(s) per period</div>
33
34 [if:$plan_desc]
35 <div style="margin:20px 0;padding:14px 16px;background:var(--col-surface-2);border-radius:10px;font-size:14px;color:var(--col-text-2);line-height:1.55;white-space:pre-wrap">$plan_desc</div>
36 [/if]
37
38 <form method="POST" action="/subscribe.cgi">
39 <input type="hidden" name="plan" value="$plan_id">
40
41 <div class="field">
42 <label>Account</label>
43 <input type="text" value="$buyer_email" disabled>
44 </div>
45
46 [if:$is_ship_kind]
47 <div class="field">
48 <label>Ship name</label>
49 <input type="text" name="ship_name" required maxlength="120">
50 </div>
51 <div class="field">
52 <label>Street address</label>
53 <input type="text" name="ship_addr1" required maxlength="200">
54 </div>
55 <div class="field">
56 <label>City</label>
57 <input type="text" name="ship_city" required maxlength="120">
58 </div>
59 <div class="field">
60 <label>Postal code</label>
61 <input type="text" name="ship_postal" required maxlength="20">
62 </div>
63 <div class="field">
64 <label>Country (2-letter ISO)</label>
65 <input type="text" name="ship_country" required maxlength="2" placeholder="US" style="text-transform:uppercase">
66 </div>
67 [/if]
68
69 <button type="submit">Confirm subscription</button>
70
71 <p class="small">By subscribing you agree to recurring monthly charges via your card on file at $store_name. Cancel anytime from your <strong>My Subscription</strong> page; benefits continue until the end of the current period.</p>
72 </form>
73 </div>
74</main>
75</body>
76</html>
Keyboard: j next diff k previous diff g top G bottom r restore c compile-check ? help