summaryrefslogtreecommitdiff
path: root/ishtar/templates/registration/login.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-26 19:04:28 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2010-12-26 19:04:28 +0100
commit84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50 (patch)
tree185b4a646f488661bb30e77ea96d1c5f21ea33dd /ishtar/templates/registration/login.html
parent622d1627ae53596e471fa8e0bad784b0a55ad2cb (diff)
downloadIshtar-84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50.tar.bz2
Ishtar-84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50.zip
Integration of registration module
Diffstat (limited to 'ishtar/templates/registration/login.html')
-rw-r--r--ishtar/templates/registration/login.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/ishtar/templates/registration/login.html b/ishtar/templates/registration/login.html
new file mode 100644
index 000000000..8c5c51670
--- /dev/null
+++ b/ishtar/templates/registration/login.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+<div class='form'>
+<form method="post" action=".">{% csrf_token %}
+<table id='login'>
+{{ 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 %}