Rev 11 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
8 | tom | 1 | <?php |
2 | |||
3 | require '../_taios.php'; |
||
4 | |||
5 | $page = new Taios_Page('Administration', '../'); |
||
6 | $page->drawHeader(); |
||
7 | $page->drawMiddle(); |
||
8 | |||
9 | $page->checkLoggedIn(); |
||
10 | $user = $page->getLoggedInUser(); |
||
11 | |||
12 | write('<h3><a href="account.php?id=' . $user->ID. '">Manage Account</a></h3>'); |
||
13 | |||
14 | $page->drawFooter(); |
||
15 | |||
16 | ?> |