11 lines
394 B
HTML
11 lines
394 B
HTML
{% extends "tenant/layouts/base.html" %}
|
|
{% block title %}Account Cancelled{% endblock %}
|
|
{% block content %}
|
|
<div class="row justify-content-center mt-5">
|
|
<div class="col-md-5 text-center">
|
|
<h3 class="text-danger">Account Cancelled</h3>
|
|
<p class="text-muted">This account has been cancelled. Please contact support if you believe this is an error.</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|