14 lines
380 B
HTML
14 lines
380 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>
|
|
{% trans "This account is inactive." %}
|
|
</p>
|
|
</div>
|
|
{% endblock content %}
|