23 lines
776 B
HTML
23 lines
776 B
HTML
{% 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 & Usage
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|