cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/templates/account/password_delete.html
2013-08-16 14:07:28 +02:00

15 lines
463 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Delete Password" %}{% endblock %}
{% block content %}
<h1>{% trans "Delete Password" %}</h1>
<p>{% blocktrans %}You may delete your password since you are currently logged in using OpenID.{% endblocktrans %}</p>
<form method="post" action="">
{% csrf_token %}
<input type="submit" value="{% trans "delete my password" %}">
</form>
{% endblock %}