summaryrefslogtreecommitdiffstats
path: root/forum/templates/authopenid/delete.html
diff options
context:
space:
mode:
Diffstat (limited to 'forum/templates/authopenid/delete.html')
-rw-r--r--forum/templates/authopenid/delete.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/forum/templates/authopenid/delete.html b/forum/templates/authopenid/delete.html
new file mode 100644
index 00000000..0f9f1c60
--- /dev/null
+++ b/forum/templates/authopenid/delete.html
@@ -0,0 +1,39 @@
+{% extends "base.html" %}
+<!-- delete.html -->
+{% load i18n %}
+{% block title %}{% spaceless %}{% trans "Delete account" %}{% endspaceless %}{% endblock %}
+{% block content %}
+<div id="main-bar" class="">
+ <h3>
+ {% trans "Account: delete account" %}
+ </h3>
+</div>
+
+<p class="settings-descr">{% blocktrans %}Note: After deleting your account, anyone will be able to register this username.{% endblocktrans %}</p>
+{% if form.errors %}
+<p class="errors">{% trans "Please correct errors below:" %}<br />
+ {% if form.confirm.errors %}
+ <span class="error">{% trans "Check confirm box, if you want delete your account." %}</span><br />
+ {% endif %}
+ {% if form.password.errors %}
+ <span class="error">{% trans "Password:" %} {{ form.password.errors|join:", " }}</span>
+ {% endif %}
+</p>
+{% endif %}
+{% if msg %}
+<p class="errors">{% trans "Please correct errors below:" %}<br />
+ <span class="error">{{ msg }}</span>
+ </p>
+{% endif %}
+<div class="aligned">
+ <form action="." method="post" accept-charset="utf-8">
+
+ <div id="form-row"> {{ form.confirm }} {% trans "I am sure I want to delete my account." %}</div>
+ <div id="form-row"><label for="id_password">{% trans "Password/OpenID URL" %}</label>{{ form.password }} {% trans "(required for your security)" %}</div>
+
+ <p><input type="submit" value="{% trans "Delete account permanently" %}"></p>
+
+ </form>
+ </div>
+{% endblock %}
+<!-- end delete.html -->