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-idp/index.php | |
| parent | 7ea2275ca076a880c27448cdbdfe09ffa9f15db8 (diff) | |
| download | lasso-40940b95aaefd87f9af96439669cc6cb184d69ef.tar.gz lasso-40940b95aaefd87f9af96439669cc6cb184d69ef.tar.xz lasso-40940b95aaefd87f9af96439669cc6cb184d69ef.zip | |
New logging system with a web interface.
Diffstat (limited to 'php/Attic/examples/sample-idp/index.php')
| -rw-r--r-- | php/Attic/examples/sample-idp/index.php | 39 |
1 files changed, 14 insertions, 25 deletions
diff --git a/php/Attic/examples/sample-idp/index.php b/php/Attic/examples/sample-idp/index.php index 09939e0a..44e4570d 100644 --- a/php/Attic/examples/sample-idp/index.php +++ b/php/Attic/examples/sample-idp/index.php @@ -65,41 +65,30 @@ You can get more informations about <b>Lasso</b> at <br> <body> <p> -<table border="1" frame="above"> -<tr> - <td><b>Identity Provider Administration</b></td> -</tr> -<tr> - <td><a href="setup.php">Setup</a></td> -</tr> -<tr> - <td><a href="admin_user.php">Users Management</a></td> -</tr> -<tr> - <td><b>Identity Provider Fonctionnality</b></td> -</tr> + <b>Identity Provider Administration</b><br> + <a href="setup.php">Setup</a><br> + <a href="admin_user.php">Users Management</a> +<?php if ($config['log_handler'] == 'sql') { ?> + <br><a href="log_view.php">View log</a> +<?php } ?> +</p> +<p> + <b>Identity Provider Fonctionnality</b><br> <?php if (!isset($_SESSION["user_id"])) { ?> -<tr> - <td><a href="login.php">Local Login</a></td> -</tr> + <a href="login.php">Local Login</a><br> <?php } else { ?> -<tr> +<!-- <td><a href="federate.php">Create federation</a></td> -</tr> -<tr> <td><a href="defederate.php">Destroy federation</a></td> -</tr> -<tr> - <td><a href="logout.php">Local Logout</a></td> -</tr> +--> + <a href="logout.php">Local Logout</a> <?php } ?> -</table> </p> <p> -<table border="1" frame="above"> +<table> <caption><b>Status</b></caption> <tr> <?php |
