Diff -- /var/www/vhosts/3dshawn.com/abforge.3dshawn.com/TEMPLATES/abforge_signup.html
Diff
/var/www/vhosts/3dshawn.com/abforge.3dshawn.com/TEMPLATES/abforge_signup.html
added on local at 2026-07-01 16:01:56
Added
+106
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to 708f4ff4bc5e
to 708f4ff4bc5e
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.| 1 | <!-- Shared logged-out marketing nav so users can browse the site | |
| 2 | (Features, Docs, Pricing, etc.) without having to commit to signing | |
| 3 | up first. --> | |
| 4 | <header class="landing-nav"> | |
| 5 | <div class="landing-nav-inner"> | |
| 6 | <a href="index.cgi" class="flex items-center gap-3" style="text-decoration:none"> | |
| 7 | <div class="brand-mark">A<span style="color:#ffb347">B</span></div> | |
| 8 | <div class="brand-text"><span class="brand-name">ABForge</span><span class="brand-sub">Experimentation Platform</span></div> | |
| 9 | </a> | |
| 10 | <nav class="links"> | |
| 11 | <a href="features.cgi">Features</a> | |
| 12 | <a href="docs.cgi">Docs</a> | |
| 13 | <a href="why.cgi">Why ABForge</a> | |
| 14 | <a href="pricing.cgi">Pricing</a> | |
| 15 | <a href="faq.cgi">FAQ</a> | |
| 16 | <a href="about.cgi">About</a> | |
| 17 | </nav> | |
| 18 | <div class="auth-actions"> | |
| 19 | <a href="login.cgi" class="btn btn-ghost btn-sm">Sign in</a> | |
| 20 | </div> | |
| 21 | </div> | |
| 22 | </header> | |
| 23 | ||
| 24 | <div class="auth-shell"> | |
| 25 | <aside class="auth-side"> | |
| 26 | <div class="auth-side-glow"></div> | |
| 27 | <div class="auth-side-content"> | |
| 28 | ||
| 29 | </div> | |
| 30 | <div class="auth-side-content"> | |
| 31 | <div class="hero-pill" style="margin-bottom:18px"><span class="dot"></span> 14-day free trial</div> | |
| 32 | <div class="auth-quote">Set up your first site and experiment in under 2 minutes.</div> | |
| 33 | <div class="auth-quote-attr" style="margin-bottom:24px">No credit card. Cancel anytime. Your data stays yours.</div> | |
| 34 | </div> | |
| 35 | </aside> | |
| 36 | ||
| 37 | <main class="auth-main"> | |
| 38 | <div style="display:flex;justify-content:flex-end"> | |
| 39 | <a href="/login.cgi" class="text-sm text-secondary">Already have an account? <span class="text-brand fw-600">Sign in</span></a> | |
| 40 | </div> | |
| 41 | ||
| 42 | <div class="auth-form-wrap"> | |
| 43 | <h1 class="auth-title">Start your trial</h1> | |
| 44 | <p class="auth-sub">Pick your plan now or later  you'll have full access for 14 days.</p> | |
| 45 | ||
| 46 | [if:$error_msg] | |
| 47 | <div class="banner danger" style="margin-bottom:18px"> | |
| 48 | <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/></svg> | |
| 49 | <div class="text-xs">$error_msg</div> | |
| 50 | </div> | |
| 51 | [/if] | |
| 52 | ||
| 53 | <form method="POST" action="/signup.cgi" autocomplete="on"> | |
| 54 | <div aria-hidden="true" style="position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden"><label>Company website (leave blank)<input type="text" name="company_website" tabindex="-1" autocomplete="off" value=""></label></div> | |
| 55 | <div class="form-group"> | |
| 56 | <label class="form-label">Display name</label> | |
| 57 | <input class="input" type="text" name="display_name" value="$name_val" placeholder="Your name or team"> | |
| 58 | <div class="form-help">Shown on receipts and team invites.</div> | |
| 59 | </div> | |
| 60 | ||
| 61 | <div class="form-group"> | |
| 62 | <label class="form-label">Email <span class="req">*</span></label> | |
| 63 | <input class="input" type="email" name="email" value="$email_val" placeholder="you\@company.com" autocomplete="email" required> | |
| 64 | </div> | |
| 65 | ||
| 66 | <div class="form-group"> | |
| 67 | <label class="form-label">Password <span class="req">*</span></label> | |
| 68 | <input class="input" type="password" name="password" placeholder="At least 8 characters" autocomplete="new-password" required minlength="8"> | |
| 69 | <div class="form-help">Stored as a salted, iterated SHA-256 hash. We never see your plaintext password.</div> | |
| 70 | </div> | |
| 71 | ||
| 72 | <div class="form-group"> | |
| 73 | <label class="form-label">Choose a plan</label> | |
| 74 | <select class="select" name="plan_tier"> | |
| 75 | [loop:@plan_options] | |
| 76 | <option value="[$loop1.value]"[$loop1.selected_attr]>[$loop1.label]</option> | |
| 77 | [/loop] | |
| 78 | </select> | |
| 79 | </div> | |
| 80 | ||
| 81 | <label class="checkbox" style="margin-bottom:18px"> | |
| 82 | <input type="checkbox" name="marketing_opt_in" value="1" checked> Email me product updates and experimentation tips (optional) | |
| 83 | </label> | |
| 84 | ||
| 85 | <button type="submit" class="btn btn-primary btn-block btn-lg">Create my account →</button> | |
| 86 | </form> | |
| 87 | ||
| 88 | <div class="auth-foot"> | |
| 89 | By creating an account you agree to our <a href="terms.cgi">Terms of Service</a> and <a href="privacy.cgi">Privacy Policy</a>. | |
| 90 | </div> | |
| 91 | </div> | |
| 92 | </main> | |
| 93 | </div> | |
| 94 | ||
| 95 | <footer class="site-foot"> | |
| 96 | <div class="foot-grid"> | |
| 97 | <div class="foot-col"> | |
| 98 | <div class="flex items-center gap-3 mb-2"><div class="brand-mark" style="width:32px;height:32px;font-size:15px">A<span style="color:#ffb347">B</span></div><div class="brand-text"><span class="brand-name">ABForge</span></div></div> | |
| 99 | <p class="text-sm text-secondary" style="max-width:340px">The experimentation platform for any site.</p> | |
| 100 | </div> | |
| 101 | <div class="foot-col"><h5>Platform</h5><ul><li><a href="features.cgi">Features</a></li><li><a href="docs.cgi">Docs</a></li><li><a href="why.cgi">Why ABForge</a></li><li><a href="pricing.cgi">Pricing</a></li><li><a href="faq.cgi">FAQ</a></li></ul></div> | |
| 102 | <div class="foot-col"><h5>Company</h5><ul><li><a href="about.cgi">About</a></li><li><a href="contact.cgi">Contact</a></li></ul></div> | |
| 103 | <div class="foot-col"><h5>Legal & Trust</h5><ul><li><a href="privacy.cgi">Privacy</a></li><li><a href="terms.cgi">Terms of Service</a></li></ul></div> | |
| 104 | </div> | |
| 105 | <div class="foot-bottom"><span>© 2026 ABForge, Inc. All rights reserved.</span><span>Made for teams who treat experimentation seriously.</span></div> | |
| 106 | </footer> |