blob: cb57f4ec8f4d9cf35ad2f9db18a162b8c1155ef4 (
plain)
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
|
<?php
/**
* OpenID
*
* PHP Version 5.2.0+
*
* @category Auth
* @package OpenID
* @author Bill Shupp <hostmaster@shupp.org>
* @copyright 2009 Bill Shupp
* @license http://www.opensource.org/licenses/bsd-license.php FreeBSD
* @link http://github.com/shupp/openid
*/
?>
<html>
<head>
<title>PEAR OpenID Debug</title>
<link rel="stylesheet" href="/css/debug.css" type="text/css" />
</head>
<body>
<?php
if (isset($contents)) {
echo $contents;
}
?>
</body>
</html>
|