cookiecutter-django/{{cookiecutter.repo_name}}/{{cookiecutter.project_name}}/templates/account/password_delete.html

15 lines
497 B
HTML
Raw Normal View History

{% raw %}{% extends "account/base.html" %}
2013-08-16 16:07:28 +04:00
{% load i18n %}
{% block head_title %}{% trans "Delete Password" %}{% endblock %}
{% block content %}
<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 %}
<button class="btn" type="submit">{% trans "delete my password" %}</button>
2013-08-16 16:07:28 +04:00
</form>
{% endblock %}
{% endraw %}