{% extends "authopenid/base.html" %} {% load i18n %} {% load appname %} {% load url from future %} {% block content %} {% if msg %}

{{ msg }}

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

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

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

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


{% endif %}

Sign into {% appname %}

If you only have an account with this site and dont wish to use any other related sites, use this method.

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

{{ form2.username }}

{{ form2.password }}

If you have a third-part account, use this method to log into this site and all supported sites.

{% trans "Sign In Using Your OpenID URL" %}

Please click your account provider:

{% endblock %} {% block extra_scripts %} {% endblock %}