pkmntrade.club/theme/templates/account/account_inactive.html

14 lines
402 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% load allauth %}
{% block head_title %}{% trans "Account Inactive" %}{% endblock head_title %}
{% block content %}
<div class="container mx-auto max-w-md mt-6 text-center">
<h1 class="text-3xl font-bold mb-6">{% trans "Account Inactive" %}</h1>
<p class="text-gray-700">
{% trans "This account is inactive." %}
</p>
</div>
{% endblock content %}