51 lines
1.9 KiB
Text
51 lines
1.9 KiB
Text
doctype html
|
|
html(lang="en")
|
|
head
|
|
meta(charset="utf-8")
|
|
meta(name="viewport" content="width=device-width, initial-scale=1")
|
|
title= title
|
|
link(rel="stylesheet" href="/css/styles.css")
|
|
|
|
body
|
|
.app-container
|
|
// Navigation
|
|
nav.nav
|
|
a.nav-logo(href="/")
|
|
svg(width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2")
|
|
path(d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z")
|
|
path(d="M12 6v6l4 2")
|
|
span Freshyo
|
|
ul.nav-links
|
|
li: a(href="/privacy-policy") Back to Policy
|
|
|
|
// Main Content
|
|
.app-content
|
|
.delete-card
|
|
a.back-link(href="/privacy-policy")
|
|
span ← Back to Privacy Policy
|
|
|
|
span.warning-icon !
|
|
h1 Delete Account
|
|
p To delete your account and personal data, please verify your mobile number. This action cannot be undone.
|
|
|
|
form(action="/delete-account" method="POST")
|
|
.form-group
|
|
label.form-label(for="mobile") Mobile Number
|
|
input#mobile.form-input(type="tel" name="mobile" placeholder="+91 99999 99999" required minlength="10")
|
|
|
|
button.btn.btn-danger(type="submit")
|
|
span Delete My Account
|
|
|
|
// Footer
|
|
footer.footer
|
|
.footer-content
|
|
.footer-brand
|
|
svg(width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2")
|
|
path(d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z")
|
|
span Freshyo
|
|
.footer-links
|
|
a(href="#") For Farmers
|
|
a(href="#") For Consumers
|
|
a(href="/privacy-policy") Privacy Policy
|
|
a(href="/delete-account") Delete Account
|
|
p.footer-copyright © #{year} Freshyo Inc.
|