{% extends "base.html" %} {% load i18n %} {% block title %}{% spaceless %}{% trans "User login" %}{% endspaceless %}{% endblock %} {% block forejs %} {% endblock %} {% block content %}
{% trans "User login" %}
{% if msg %}

{{ msg }}

{% endif %} {% if answer %}
{% blocktrans with answer.question.title as title and answer.summary as summary %} Your answer to {{title}} {{summary}} will be posted once you log in {% endblocktrans %}
{% endif %} {% if question %}
{% blocktrans with question.title as title and question.summary as summary %}Your question {{title}} {{summary}} will be posted once you log in {% endblocktrans %}
{% endif %}
{% trans "Click to sign in through any of these services." %}
{{ form2.next }}

{% trans 'Enter your Provider user name' %}

{% trans 'Enter your web address' %}

{% trans "we support two login modes" %}


{% if form1.errors %}

{% trans "Sorry, looks like we have some errors:" %}

{% endif %}
{{ form1.next }}
{% trans "Use login name and password" %}

{{ form1.username }}

{{ form1.password }}
{% endblock %} {% block sidebar %}

{% trans "Why use OpenID?" %}

{% trans "Find out more" %} »
{% trans "Get OpenID" %} »


{% endblock%}