{% extends "registration/base.html" %} {% load i18n %} {% block title %} {{block.super }} | {% trans "Sign in" %} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block header %} {% if next %}

{% trans "You need to sign-in to access that page" %}

{% else %}

{% trans "Sign in" %}

{% endif %} {% endblock %} {% block content %}
{% csrf_token %}
{% trans "Use Launchpad.net account" %} {% trans "Use custom account" %}
{% blocktrans %}

Thanks to the OpenID technology you can use your existing launchpad.net account to access the dashboard.

This is the preferred method as you don't need to worry about having to maintain another account just for this website.

{% endblocktrans %}
{% blocktrans %}

If you already have a local account you can sign-in with your user name and password.

{% endblocktrans %}

{{ form.username }}

{{ form.password }}

{% if form.errors %}

{% trans "Your user name and password didn't match." %}

{% trans "If you have problems signing in please" %} {% trans "reset your password" %}.

{% endif %}

{% trans "Sign in with Launchpad.net" %}
{% endblock %}