summaryrefslogtreecommitdiff
path: root/ishtar/templates/registration/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/templates/registration/login.html')
-rw-r--r--ishtar/templates/registration/login.html19
1 files changed, 0 insertions, 19 deletions
diff --git a/ishtar/templates/registration/login.html b/ishtar/templates/registration/login.html
deleted file mode 100644
index ada4f6aa9..000000000
--- a/ishtar/templates/registration/login.html
+++ /dev/null
@@ -1,19 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-
-{% block content %}
-<div class='form'>
-<form method="post" action=".">{% csrf_token %}
-<table id='login'>
- <caption>{%trans "Log in"%}</caption>
-{{ form.as_table }}
- <tr class='submit'><td colspan='2'><input type="submit" value="{% trans 'Log in' %}" /></td></tr>
- <input type="hidden" name="next" value="{{ next }}" />
-</table>
-</form>
-</div>
-<div class='info'>
-<p>{% trans "Forgot password?" %} <a href="{% url auth_password_reset %}">{% trans "Reset it" %}</a></p>
-<p>{% trans "Not member?" %} <a href="{% url registration_register %}">{% trans "Register" %}</a></p>
-</div>
-{% endblock %}