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

{% trans "Sign in" %}

{% endblock %} {% block content %} {% blocktrans %}

Please sign in with your email or screen name.
{% endblocktrans %}
{% if msg %}

{{ msg }}

{% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% include "simpleauth/login_box.html" %}
{% endblock %}