mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-27 00:33:34 +00:00
20 lines
446 B
PHP
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");
|
|
?>
|