~gary/python-openid/python-openid-2.2.1-patched

« back to all changes in this revision

Viewing changes to examples/djopenid/templates/server/trust.html

  • Committer: Launchpad Patch Queue Manager
  • Date: 2007-11-30 02:46:28 UTC
  • mfrom: (1.1.1 pyopenid-2.0)
  • Revision ID: launchpad@pqm.canonical.com-20071130024628-qktwsew3383iawmq
[rs=SteveA] upgrade to python-openid-2.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "server/index.html" %}
 
2
 
 
3
{% block body %}
 
4
 
 
5
The site <tt>{{ trust_root|escape }}</tt> has requested verification
 
6
of your OpenID.
 
7
 
 
8
<div>
 
9
<form method="post" action="/server/processTrustResult/">
 
10
{% if idSelect %}
 
11
  <p>
 
12
  Because you entered the server URL when authenticating, enter a
 
13
  username here to return an identity URL of your choice:
 
14
 
 
15
  <br/>
 
16
  <input type="text" name="name" size="30" />
 
17
  (If you omit this, <tt>{{ default_url }}</tt> will be sent instead.)
 
18
  </p>
 
19
{% else %}
 
20
  Verify your identity to the relying party?
 
21
{% endif %}
 
22
 
 
23
  <br/>
 
24
  <input type="submit" value="Yes (Allow)" name="allow" />
 
25
  <input type="submit" value="No (Cancel)" name="cancel" />
 
26
</form>
 
27
</div>
 
28
 
 
29
{% endblock %}