{% extends "base.html" %} {% load i18n %} {% block content %}
{% blocktrans with openid_request.trust_root as root and openid_request.identity as identity and openid_request.return_to as return_to and openid_request.getCancelURL as cancel_url %}

We've got a request from {{ root }} to authenticate you as {{ identity }}.

Click 'Accept' to accept authentication request (you'll be redirected to {{ return_to }}).

Click 'Dismiss' to dismiss request (and to go to {{ cancel_url }}).

{% endblocktrans %}
{% if openid_request.trustRootValid %}

{% trans "Remember my answer" %}

{% endif %}
{% endblock %}