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
+22
View File
@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block title %}Subscription Activated — JQC{% endblock %}
{% block content %}
<div class="row justify-content-center mt-5">
<div class="col-md-6 text-center">
<div class="card border-0 shadow-sm p-5">
<div class="mb-4">
<i class="bi bi-check-circle-fill text-success" style="font-size: 3rem;"></i>
</div>
<h2 class="h4 mb-2">Subscription Activated!</h2>
<p class="text-muted mb-4">
Your JQC subscription is now active. You have full access to all features
included in your plan.
</p>
<a href="{{ url_for('tenant_settings.plan') }}" class="btn btn-primary">
<i class="bi bi-patch-check me-1"></i> View Plan &amp; Usage
</a>
</div>
</div>
</div>
{% endblock %}