cacert-testmgr/manager/application/views/scripts/login/loginresult.phtml
Markus Warg 4f4c5ce3cc initial setup of framework code
enabled features
* login
* crt login
* top / left menu
* logging
* db layer
2010-03-31 16:43:49 +02:00

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
}