Remove unnecessary account templates

closes #126
This commit is contained in:
Saurabh Kumar 2015-05-01 00:29:11 +05:30
parent bb5505f3a4
commit 49ab03e4cf
2 changed files with 0 additions and 26 deletions

View File

@ -1,15 +0,0 @@
{% 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 %}

View File

@ -1,11 +0,0 @@
{% raw %}{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Password Deleted" %}{% endblock %}
{% block content %}
<h2>{% trans "Password Deleted" %}</h2>
<p>{% blocktrans %}Your password has been deleted.{% endblocktrans %}</p>
{% endblock %}
{% endraw %}