{% extends "authopenid/base_profile.html" %} {% load i18n %} {% block title %}{{ block.super }} | {% trans "OpenID verification" %}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% trans "OpenID verification" %}{% endblock %} {% block content_title %}

{% trans "OpenID verification" %}

{% endblock %} {% block head %}{% endblock %} {% block body %}

{% trans "Your OpenID is verified! " %}

{% blocktrans %}

Your OpenID can now be associated with a new or existing membership. You can change the association later in your preferences.

{% endblocktrans %}

{% trans "Associate your OpenID" %}

{% blocktrans %}

If you're joining for the first time, associate your OpenID with a new account. If you're already a member, associate with your existing account.

{% endblocktrans %}
{% if form1.errors %}

{% trans "Please correct errors below:" %}
{% if form1.username.errors %} {{ form1.username.errors|join:", " }} {% endif %} {% if form1.email.errors %} {{ form1.email.errors|join:", " }} {% endif %}

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

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

{% endif %}
{{ form.next }}
{% trans "A new account" %}

{{ form1.username }}

{{ form1.email }}

{{ form.next }}
{% trans "An exisiting account" %}

{{ form2.username }}

{{ form2.password }}
{% endblock %}