diff options
| author | Christophe Nowicki <cnowicki@easter-eggs.com> | 2004-09-16 15:57:55 +0000 |
|---|---|---|
| committer | Christophe Nowicki <cnowicki@easter-eggs.com> | 2004-09-16 15:57:55 +0000 |
| commit | 40940b95aaefd87f9af96439669cc6cb184d69ef (patch) | |
| tree | f0d65eaa1369aeaca88f5774f2ca2cba4932ca27 /php/Attic/examples/sample-sp/index.php | |
| parent | 7ea2275ca076a880c27448cdbdfe09ffa9f15db8 (diff) | |
New logging system with a web interface.
Diffstat (limited to 'php/Attic/examples/sample-sp/index.php')
| -rw-r--r-- | php/Attic/examples/sample-sp/index.php | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/php/Attic/examples/sample-sp/index.php b/php/Attic/examples/sample-sp/index.php index 700198f4..199e8286 100644 --- a/php/Attic/examples/sample-sp/index.php +++ b/php/Attic/examples/sample-sp/index.php @@ -66,34 +66,39 @@ You can get more informations about <b>Lasso</b> at <br> <body> <p> -<table border="1" frame="above"> -<tr> - <td><b>Service Provider Administration</b></td> -</tr> -<tr> - <td><a href="setup.php">Setup</a></td> -</tr> +<b>Service Provider Administration</b><br> +<a href="setup.php">Setup</a><br> +<a href="admin_user.php">Users Management</a><br> +</p> +<p> + <b>Serice Provider Fonctionnality</b> +<table> +<?php + if (!isset($_SESSION["nameidentifier"])) { + ?> <tr> - <td><a href="admin_user.php">Users Management</a></td> + <td colspan="2">Single SignOn using an IdP</td> </tr> <tr> - <td><b>Serice Provider Fonctionnality</b></td> + <td>Provider</td> + <td>Profile</td> </tr> -<?php - if (!isset($_SESSION["nameidentifier"])) { - ?> <tr> - <td><a href="login.php">Login!</a></td> + <td><?php echo $config['providerID']; ?></td> + <td><a href="login.php">post</a> | <a href="login.php">artifact</a></td> </tr> <?php } else { ?> <tr> - <td><a href="logout.php">Logout!</a></td> + <td colspan="2">Single Logout</td> +<tr> + <td colspan="2"><a href="logout.php">Logout!</a></td> </tr> <?php } ?> </table> </p> + <p> -<table border="1" frame="above"> +<table> <caption><b>Status</b></caption> <tr> <?php |
