diff -r a2f733f900c0 -r fc0f3e398166 server/src/remieplt/templates/registration/login.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server/src/remieplt/templates/registration/login.html Fri May 29 02:22:11 2015 +0200 @@ -0,0 +1,55 @@ +{% extends "registration/base.html" %} +{% load i18n %} +{% load static %} + +{% 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 %} + + +