davical/htdocs/index.php
Andrew McMillan a57d690167 Kinda working with both Lightning & Evolution now. About to restructure to
add TODO items and make certain queries easier.
2006-09-21 18:24:26 +12:00

20 lines
446 B
PHP

<?php
require_once("always.php");
require_once("RSCDSSession.php");
$session->LoginRequired();
require_once("interactive-page.php");
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="/help.php">Help on configuring CalDAV clients with RSCDS</a></li>
</ul>
</p>
EOBODY;
include("page-footer.php");
?>