1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<html>
<head>
<title>Python OpenID Example</title>
</head>
<body>
<p>
This is a Django package which implements both an OpenID server
and an OpenID consumer. These examples are provided with the
OpenID library so you can learn how to use it in your own
applications.
</p>
<p>
To begin, click one of these links:
</p>
<ul>
<li><a href="{{ consumer_url }}">Example Consumer (Relying Party)</a></li>
<li><a href="{{ server_url }}">Example Server (Identity Provider)</a></li>
</ul>
<p>
<strong>Note:</strong> If you want to test the example consumer
using the example server, you must start a separate server process
for each application.
</p>
</body>
</html>
|