mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-12-03 15:04:09 +03:00
15 lines
497 B
HTML
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 %} |