{% extends "base.html" %} {% load i18n %} {% comment %} Copyright 2010-2013 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block extra_header %} {% endblock %} {% block html_extra %}data-qa-id="login"{% endblock %} {% block content %}
{% if rpconfig %} {% include "widgets/trusted_rp.html" %} {% else %}

{% blocktrans %}Log in to {{ brand_description }}{% endblocktrans %}

{% endif %}
{% if token and rpconfig %}

{% blocktrans with rpconfig.displayname as rpconfigname %}You are here because {{ rpconfigname }} uses the {{ brand_description }}.{% endblocktrans %}

{% endif %}
{% csrf_token %}


{{ form.email }} {% if form.email.errors %} {{ form.email.errors|join:"" }} {% endif %}


{{ form.password }} {% if form.password.errors %} {{ form.password.errors|join:"" }} {% endif %} {% if not form.oath_token and form.non_field_errors %} {{ form.non_field_errors|join:"" }} {% endif %}
{% include "common/forgot_password_link.html" %}

{% if form.oath_token %}

{% blocktrans %}Two Factor Authentication{% endblocktrans %}


{{ form.oath_token }} {% if form.oath_token.errors %} {{ form.oath_token.errors|join:"" }} {% endif %} {% if form.non_field_errors %} {{ form.non_field_errors|join:"" }} {% endif %}

{% endif %}

 

{% if not readonly %}

{% include "common/new_account_link.html" %}

{% endif %}
{% if next %}{% endif %} {% if token %}{% trans "or" %} {% include "common/cancel_link.html" %}{% endif %}
 
{% if not hide_sidebar %} {% endif %}

{% trans "What is Launchpad and a Launchpad Account?" %}

{% blocktrans %}Launchpad is the central point where we gather all sorts of interactions around Ubuntu, Canonical and free software generally. You can use your Launchpad account to report bugs, to find or contribute translations, to find specs, to contribute code.{% endblocktrans %}

{% endblock %}