4f4c5ce3cc
enabled features * login * crt login * top / left menu * logging * db layer
16 lines
No EOL
287 B
PHTML
16 lines
No EOL
287 B
PHTML
<?php
|
|
/**
|
|
* @author markus
|
|
* $Id: loginresult.phtml 7 2009-11-19 15:03:59Z markus $
|
|
*/
|
|
|
|
if ($this->session->authdata['authed']) {
|
|
?>
|
|
<H1>Willkommen im Club, <?php print $this->session->authdata['authed_username']; ?></H1>
|
|
<?php
|
|
}
|
|
else {
|
|
?>
|
|
<H1>Bitte loggen Sie sich ein.</H1>
|
|
<?php
|
|
} |