diff -r a6a37775a76d -r c558d677ee52 web/ldtplatform/templates/registration/login.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/ldtplatform/templates/registration/login.html Mon Dec 03 10:43:13 2012 +0100 @@ -0,0 +1,74 @@ +{% extends "registration/base.html" %} +{% load i18n %} +{% load absstatic %} +{% load static %} + +{% block js_declaration %} + + +{% endblock %} +{% block css_import %} + {{ block.super }} + + +{% endblock %} + + +{% block login %} +{% endblock %} + +{% block content_title %}{% trans 'Log in' %}{% endblock %} +{% block iricontent %} + {% if form.errors %} +

{% trans "Sorry, that's not a valid username or password." %}

+ {% endif %} +
+
+
+ {% csrf_token %} + +
    + {{form.as_ul}} +
+ +
+ +
+
+
+ +
+ +{% endblock %} + + +