Diff -- /var/www/vhosts/3dshawn.com/repricer.3dshawn.com/TEMPLATES/repricer_signup.html
Diff
/var/www/vhosts/3dshawn.com/repricer.3dshawn.com/TEMPLATES/repricer_signup.html
added on local at 2026-07-01 21:47:26
Added
+106
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to 57fd52f8f0d3
to 57fd52f8f0d3
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, Tour, 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"><span>RP</span></div> | |
| 8 | <div class="brand-text"><span class="brand-name">RePricer</span><span class="brand-sub">Repricing Platform</span></div> | |
| 9 | </a> | |
| 10 | <nav class="links"> | |
| 11 | <a href="features.cgi">Features</a> | |
| 12 | <a href="tour.cgi">Tour</a> | |
| 13 | <a href="why.cgi">Why RePricer</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-icon" title="Sign in" aria-label="Sign in"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"/><polyline points="10 17 15 12 10 7"/><line x1="15" y1="12" x2="3" y2="12"/></svg></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 unified seller console in under 2 minutes.</div> | |
| 33 | <div class="auth-quote-attr" style="margin-bottom:24px">No credit card. Cancel anytime. Your models stay 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 a seller? <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 business or seller name"> | |
| 58 | <div class="form-help">This is what appears on invoices and inside your team account.</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\@yourbusiness.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 seller 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"><span>RP</span></div><div class="brand-text"><span class="brand-name">RePricer</span></div></div> | |
| 99 | <p class="text-sm text-secondary" style="max-width:340px">The operating system for marketplace sellers.</p> | |
| 100 | </div> | |
| 101 | <div class="foot-col"><h5>Platform</h5><ul><li><a href="features.cgi">Features</a></li><li><a href="tour.cgi">Tour</a></li><li><a href="why.cgi">Why RePricer</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 RePricer, Inc. All rights reserved.</span><span>Made for sellers who treat this like a business.</span></div> | |
| 106 | </footer> |