First pass at converting unstyled templates to match site style
This commit is contained in:
parent
68932b75b6
commit
6e4c6040bd
28 changed files with 426 additions and 411 deletions
14
theme/templates/account/account_inactive.html
Normal file
14
theme/templates/account/account_inactive.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue