~ubuntuone-pqm-team/canonical-identity-provider/trunk

« back to all changes in this revision

Viewing changes to identityprovider/templates/server_info.html

  • Committer: Danny Tamez
  • Date: 2010-04-21 15:29:24 UTC
  • Revision ID: danny.tamez@canonical.com-20100421152924-lq1m92tstk2iz75a
Canonical SSO Provider (Open Source) - Initial Commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- Copyright 2010 Canonical Ltd.  This software is licensed under the
 
2
GNU Affero General Public License version 3 (see the file  LICENSE). -->
 
3
 
 
4
{% extends "base.html" %}
 
5
{% load i18n %}
 
6
 
 
7
{% block "title" %}{% trans "This is an OpenID server" %}{% endblock %}
 
8
 
 
9
{% block "content" %}
 
10
    <p>{{ brand.server_info }}</p>
 
11
    <p>{% blocktrans %}This page is meant to be called from an OpenID-enabled
 
12
site and therefore has no user-facing functions.{% endblocktrans %}</p>
 
13
{% endblock %}
 
14