cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.project_name}}/templates/account/password_delete.html
2013-12-17 16:27:18 +01:00

15 lines
497 B
HTML

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