summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/registration/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/registration/login.html')
-rw-r--r--ishtar_common/templates/registration/login.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/ishtar_common/templates/registration/login.html b/ishtar_common/templates/registration/login.html
new file mode 100644
index 000000000..ada4f6aa9
--- /dev/null
+++ b/ishtar_common/templates/registration/login.html
@@ -0,0 +1,19 @@
+{% 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 %}