mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-18 06:44:01 +00:00
15 lines
477 B
HTML
Executable File
15 lines
477 B
HTML
Executable File
{% 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 %}
|