2013-08-16 17:17:18 +04:00
|
|
|
{% raw %}{% extends "account/base.html" %}
|
2013-08-16 16:07:28 +04:00
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block head_title %}{% trans "Delete Password" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2013-08-16 17:17:18 +04:00
|
|
|
<h2>{% trans "Delete Password" %}</h2>
|
2013-08-16 16:07:28 +04:00
|
|
|
<p>{% blocktrans %}You may delete your password since you are currently logged in using OpenID.{% endblocktrans %}</p>
|
|
|
|
<form method="post" action="">
|
|
|
|
{% csrf_token %}
|
2013-08-16 17:17:18 +04:00
|
|
|
<button class="btn" type="submit">{% trans "delete my password" %}</button>
|
2013-08-16 16:07:28 +04:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|
2013-08-16 17:17:18 +04:00
|
|
|
{% endraw %}
|