{% extends "base-2col.html" %} {% load i18n %} {% block title %}{% trans "Sign in" %}{% endblock %} {% block breadcrumbs %}{% trans "Accounts" %} / {% trans "Sign in" %}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

{% trans "Sign in" %}

{% if msg %}

{{ msg }}

{% endif %} {% if form2.errors %}

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


{% endif %} {{ auth_form }}

{% trans "Sign In Using Your Account ID" %}


{{ form2.username }}

{{ form2.password }}


{% if form1.errors %}

{{ form1.openid_url.errors|join:", " }}

{% endif %}
{% endblock %} {% block aside %}

{% trans "Hint" %}

{% trans "If you don't have an account, you can" %} {% trans "sign up" %} {% trans "for one; it's free, and you'll be able to add content to this site" %}.

{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one" %}.



{% endblock %}