diff --git a/pinaxcon/templates/account/delete.html b/pinaxcon/templates/account/delete.html new file mode 100644 index 0000000000000000000000000000000000000000..9f32de64d46217f6fd8316dd1fad458d507b6ae8 --- /dev/null +++ b/pinaxcon/templates/account/delete.html @@ -0,0 +1,19 @@ +{% extends "account/base.html" %} + +{% load i18n %} + +{% block body_class %}account account-delete{% endblock %} + +{% block head_title %}{% trans "Delete Account" %}{% endblock %} + +{% block content %} +

{% trans "Delete Account" %}

+ +

{% blocktrans %}If you go ahead and delete your account, your information will be expunged within {{ ACCOUNT_DELETION_EXPUNGE_HOURS }} hours.{% endblocktrans %}

+ +
+ {% csrf_token %} + +
+ +{% endblock %}