{% extends "base.html" %} {% load i18n %} {% block title %}{{ block.super }} | {% trans "Sign in" %}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% trans "Login" %}{% endblock %} {% block content_title %}

{% trans "Sign in" %}

{% endblock %} {% block body %} {% blocktrans %}

Please login in with your email or screen name, or using your OpenID URL.
{% endblocktrans %}
{% if msg %}

{{ msg }}

{% endif %} {% if form1.errors %}

{% trans "Please correct errors below:" %}
{% if form1.username.errors %} {{ form1.username.errors|join:", " }} {% endif %} {% if form1.password.errors %} {{ form1.password.errors|join:", " }} {% endif %}

{% endif %}
{% trans "Sign in" %}
{{ form1.next }}

{% trans "Or, with your OpenID:" %}

{% endblock %}