All checks were successful
Deploy to Production / Deploy to Server (push) Successful in 1m8s
- Add /change-email as a proper standalone page (public/src/change-email.html) with API key input, new email input, verification code flow, and success state - Update footer partial: change "/#change-email" link to "/change-email" on all pages - Remove email change modal HTML and hash-handler JS from index page source - Add /change-email to sitemap.xml - Rebuild all HTML files via build-html.cjs - Add updateEmailByCustomer() to src/services/keys.ts - Add customer.updated webhook handler in src/routes/billing.ts to sync email changes made via Stripe dashboard back to DocFast
14 lines
477 B
HTML
14 lines
477 B
HTML
<footer aria-label="Footer">
|
|
<div class="container">
|
|
<div class="footer-left">© 2026 DocFast. Fast PDF generation for developers.</div>
|
|
<div class="footer-links">
|
|
<a href="/">Home</a>
|
|
<a href="/docs">Docs</a>
|
|
<a href="/status">API Status</a>
|
|
<a href="/change-email">Change Email</a>
|
|
<a href="/impressum">Impressum</a>
|
|
<a href="/privacy">Privacy Policy</a>
|
|
<a href="/terms">Terms of Service</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|