Jun 28 - Implement payment functions (Stripe)

This commit is contained in:
2026-06-28 12:01:25 -04:00
parent 61ede27093
commit f292c8fb7b
21 changed files with 1112 additions and 18 deletions
+36
View File
@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Subscription Suspended — JQC</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css">
<style>
body { background: #f6f7f9; display: flex; min-height: 100vh; align-items: center; justify-content: center; }
.card { max-width: 480px; border-radius: 12px; }
</style>
</head>
<body>
<div class="container py-5">
<div class="card border-0 shadow-sm mx-auto text-center p-5">
<div class="mb-4">
<i class="bi bi-pause-circle text-warning" style="font-size: 3rem;"></i>
</div>
<h1 class="h4 mb-2">Subscription Suspended</h1>
<p class="text-muted mb-4">
Your JQC subscription has been cancelled or has lapsed. Please update your
billing information to restore access to your workspace.
</p>
<div class="d-grid gap-2">
<a href="{{ url_for('billing.portal') }}" class="btn btn-primary">
<i class="bi bi-credit-card me-1"></i> Manage Billing
</a>
<a href="mailto:support@jqc.app" class="btn btn-outline-secondary btn-sm">
<i class="bi bi-envelope me-1"></i> Contact Support
</a>
</div>
</div>
</div>
</body>
</html>