Files
MyPOS/app/templates/tenant/feature_unavailable.html
T
2026-05-07 11:09:06 -04:00

19 lines
680 B
HTML

{% extends "layouts/base.html" %}
{% block title %}Feature Unavailable{% endblock %}
{% block content %}
<div class="d-flex justify-content-center align-items-center" style="min-height: 70vh;">
<div class="text-center">
<i class="bi bi-lock-fill display-1 text-warning"></i>
<h3 class="mt-3">Feature Not Available on Your Plan</h3>
<p class="text-muted">
The <strong>{{ feature }}</strong> feature is not included in your current subscription plan.
Please contact your account administrator to upgrade.
</p>
<a href="{{ url_for('dashboard.index') }}" class="btn btn-primary mt-2">
Back to Dashboard
</a>
</div>
</div>
{% endblock %}