davical/htdocs/index.php
2006-09-13 14:11:13 +12:00

19 lines
429 B
PHP

<?php
require_once("always.php");
require_once("RSCDSSession.php");
$session->LoginRequired();
include("page-header.php");
echo <<<EOBODY
<h1>These are the admin pages...</h1>
<p>You appear to be logged on as $session->username ($session->fullname)</p>
<p>Useful links:
<ul>
<li><a href="/client_configuration_help.php">Help on configuring CalDAV clients with RSCDS</a></li>
</ul>
</p>
EOBODY;
include("page-footer.php");
?>