Diff -- /var/www/vhosts/3dshawn.com/repricer.3dshawn.com/TEMPLATES/repricer_reset_password.html
Diff
/var/www/vhosts/3dshawn.com/repricer.3dshawn.com/TEMPLATES/repricer_reset_password.html
added on local at 2026-07-01 21:47:26
Added
+104
lines
Removed
-0
lines
Context
0
unchanged
Blobs
from
to a1ed53aa2844
to a1ed53aa2844
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.| 1 | <!-- Reset-password (token redemption) page. Reached via the link in | |
| 2 | the email sent by /forgot_password.cgi. Same shell as login. --> | |
| 3 | <header class="landing-nav"> | |
| 4 | <div class="landing-nav-inner"> | |
| 5 | <a href="index.cgi" class="flex items-center gap-3" style="text-decoration:none"> | |
| 6 | <div class="brand-mark"><span>RP</span></div> | |
| 7 | <div class="brand-text"><span class="brand-name">RePricer</span><span class="brand-sub">Repricing Platform</span></div> | |
| 8 | </a> | |
| 9 | <nav class="links"> | |
| 10 | <a href="features.cgi">Features</a> | |
| 11 | <a href="tour.cgi">Tour</a> | |
| 12 | <a href="why.cgi">Why RePricer</a> | |
| 13 | <a href="pricing.cgi">Pricing</a> | |
| 14 | <a href="faq.cgi">FAQ</a> | |
| 15 | <a href="about.cgi">About</a> | |
| 16 | </nav> | |
| 17 | <div class="auth-actions"> | |
| 18 | <a href="signup.cgi" class="btn btn-primary btn-sm">Start free trial</a> | |
| 19 | </div> | |
| 20 | </div> | |
| 21 | </header> | |
| 22 | ||
| 23 | <div class="auth-shell"> | |
| 24 | <aside class="auth-side"> | |
| 25 | <div class="auth-side-glow"></div> | |
| 26 | <div class="auth-side-content"> | |
| 27 | <div class="hero-pill" style="margin-bottom:18px"><span class="dot"></span> Account recovery</div> | |
| 28 | <div class="auth-quote"> | |
| 29 | "Pick a long, unique password — or paste one from your password manager. We will never ask you to rotate this unless you tell us to." | |
| 30 | </div> | |
| 31 | <div class="auth-quote-attr">— RePricer platform</div> | |
| 32 | </div> | |
| 33 | </aside> | |
| 34 | ||
| 35 | <main class="auth-main"> | |
| 36 | <div style="display:flex;justify-content:flex-end"> | |
| 37 | <a href="/login.cgi" class="text-sm text-secondary">Back to <span class="text-brand fw-600">sign in</span></a> | |
| 38 | </div> | |
| 39 | ||
| 40 | <div class="auth-form-wrap"> | |
| 41 | ||
| 42 | [if:$token_ok] | |
| 43 | <h1 class="auth-title">Set a new password</h1> | |
| 44 | <p class="auth-sub">Pick something at least 8 characters — longer is better. Save it in your password manager before you submit.</p> | |
| 45 | ||
| 46 | [if:$has_error] | |
| 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="/reset_password.cgi" autocomplete="off"> | |
| 54 | <input type="hidden" name="t" value="$token"> | |
| 55 | <div class="form-group"> | |
| 56 | <label class="form-label">New password</label> | |
| 57 | <input class="input" type="password" name="password" placeholder="At least 8 characters" autocomplete="new-password" minlength="8" required autofocus> | |
| 58 | </div> | |
| 59 | <div class="form-group"> | |
| 60 | <label class="form-label">Confirm new password</label> | |
| 61 | <input class="input" type="password" name="password_confirm" placeholder="Re-enter the same password" autocomplete="new-password" minlength="8" required> | |
| 62 | </div> | |
| 63 | <button type="submit" class="btn btn-primary btn-block btn-lg">Save new password</button> | |
| 64 | </form> | |
| 65 | ||
| 66 | <div class="auth-foot"> | |
| 67 | After saving, you will be signed out of every device and asked to sign in again with the new password. | |
| 68 | </div> | |
| 69 | [/if] | |
| 70 | ||
| 71 | [if:!$token_ok] | |
| 72 | <h1 class="auth-title">Link unavailable</h1> | |
| 73 | <p class="auth-sub">We could not use that reset link.</p> | |
| 74 | ||
| 75 | <div class="banner danger" style="margin:18px 0"> | |
| 76 | <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> | |
| 77 | <div class="text-xs">$error_msg</div> | |
| 78 | </div> | |
| 79 | ||
| 80 | <a href="/forgot_password.cgi" class="btn btn-primary btn-block btn-lg">Request a new reset link</a> | |
| 81 | ||
| 82 | <div class="auth-foot" style="margin-top:14px"> | |
| 83 | Reset links are single-use and expire 60 minutes after they are issued. If you copied the link from an old email, request a fresh one above. | |
| 84 | </div> | |
| 85 | [/if] | |
| 86 | ||
| 87 | </div> | |
| 88 | ||
| 89 | <div class="text-center text-xs text-dim">Reset links expire in 60 minutes · single-use · audit logged</div> | |
| 90 | </main> | |
| 91 | </div> | |
| 92 | ||
| 93 | <footer class="site-foot"> | |
| 94 | <div class="foot-grid"> | |
| 95 | <div class="foot-col"> | |
| 96 | <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> | |
| 97 | <p class="text-sm text-secondary" style="max-width:340px">The operating system for online sellers.</p> | |
| 98 | </div> | |
| 99 | <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> | |
| 100 | <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> | |
| 101 | <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> | |
| 102 | </div> | |
| 103 | <div class="foot-bottom"><span>© 2026 RePricer, Inc. All rights reserved.</span><span>Made for sellers who treat this like a business.</span></div> | |
| 104 | </footer> |