added on local at 2026-07-01 13:48:03
| 1 | <!-- Forgot-password entry form. Marketing nav header is rendered by | |
| 2 | webstls_marketing.html (the shell). --> | |
| 3 | <div class="auth-shell"> | |
| 4 | <aside class="auth-side"> | |
| 5 | <div class="auth-side-glow"></div> | |
| 6 | <div class="auth-side-content"> | |
| 7 | <div class="hero-pill" style="margin-bottom:18px"><span class="dot"></span> Account recovery</div> | |
| 8 | <div class="auth-quote"> | |
| 9 | "Forgot your password is one of those flows you only notice when it works. We made ours dead simple." | |
| 10 | </div> | |
| 11 | <div class="auth-quote-attr">— WebSTLs platform</div> | |
| 12 | </div> | |
| 13 | </aside> | |
| 14 | ||
| 15 | <main class="auth-main"> | |
| 16 | <div style="display:flex;justify-content:flex-end"> | |
| 17 | <a href="/login.cgi" class="text-sm text-secondary">Remembered it? <span class="text-brand fw-600">Sign in</span></a> | |
| 18 | </div> | |
| 19 | ||
| 20 | <div class="auth-form-wrap"> | |
| 21 | ||
| 22 | [if:$submitted] | |
| 23 | <h1 class="auth-title">Check your email</h1> | |
| 24 | <p class="auth-sub"> | |
| 25 | If an account exists for the address you entered, we just emailed a reset link to it. The link is valid for 60 minutes and can only be used once. | |
| 26 | </p> | |
| 27 | <div class="banner" style="margin:18px 0;background:rgba(34,197,94,0.10);border:1px solid rgba(34,197,94,0.35);color:#86efac"> | |
| 28 | <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="20,6 9,17 4,12"/></svg> | |
| 29 | <div class="text-xs">Reset link sent (if the address is on file). Check your inbox — and your spam folder.</div> | |
| 30 | </div> | |
| 31 | <p class="text-xs text-dim" style="margin-top:14px"> | |
| 32 | Did not get the email? Wait a minute, then <a href="/forgot_password.cgi" class="text-brand">try again</a>. If it still does not arrive, contact support. | |
| 33 | </p> | |
| 34 | [/if] | |
| 35 | ||
| 36 | [if:!$submitted] | |
| 37 | <h1 class="auth-title">Forgot your password?</h1> | |
| 38 | <p class="auth-sub">Enter the email on your account and we will send you a reset link.</p> | |
| 39 | ||
| 40 | [if:$has_error] | |
| 41 | <div class="banner danger" style="margin-bottom:18px"> | |
| 42 | <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> | |
| 43 | <div class="text-xs">$error_msg</div> | |
| 44 | </div> | |
| 45 | [/if] | |
| 46 | ||
| 47 | <form method="POST" action="/forgot_password.cgi" autocomplete="on"> | |
| 48 | <div class="form-group"> | |
| 49 | <label class="form-label">Email</label> | |
| 50 | <input class="input" type="email" name="email" value="" placeholder="you\@studio.com" autocomplete="email" required autofocus> | |
| 51 | </div> | |
| 52 | <button type="submit" class="btn btn-primary btn-block btn-lg">Send reset link</button> | |
| 53 | </form> | |
| 54 | ||
| 55 | <div class="auth-foot"> | |
| 56 | We never reveal whether an address is registered — either way, you will see the same confirmation. That keeps the form from leaking account data. | |
| 57 | </div> | |
| 58 | [/if] | |
| 59 | ||
| 60 | </div> | |
| 61 | ||
| 62 | <div class="text-center text-xs text-dim">Reset links expire in 60 minutes · single-use · audit logged</div> | |
| 63 | </main> | |
| 64 | </div> | |
| 65 | ||
| 66 | <footer class="site-foot"> | |
| 67 | <div class="foot-grid"> | |
| 68 | <div class="foot-col"> | |
| 69 | <div class="flex items-center gap-3 mb-2"><div class="brand-mark" style="width:32px;height:32px;font-size:15px">W<span style="color:#a78bfa">S</span></div><div class="brand-text"><span class="brand-name">AffSoft</span></div></div> | |
| 70 | <p class="text-sm text-secondary" style="max-width:340px">The operating system for growth teams.</p> | |
| 71 | </div> | |
| 72 | <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 AffSoft</a></li><li><a href="pricing.cgi">Pricing</a></li><li><a href="faq.cgi">FAQ</a></li></ul></div> | |
| 73 | <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> | |
| 74 | <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> | |
| 75 | </div> | |
| 76 | <div class="foot-bottom"><span>© 2026 AffSoft All rights reserved.</span><span>Made for creators who treat this like a business.</span></div> | |
| 77 | </footer> |