30 lines
628 B
PHTML
30 lines
628 B
PHTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>no title yet...</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div>
|
||
|
<?php if (empty($this->context->user)): ?>
|
||
|
<a href="<?php echo \Chibi\UrlHelper::route('auth', 'login') ?>">
|
||
|
login
|
||
|
</a>
|
||
|
or
|
||
|
<a href="<?php echo \Chibi\UrlHelper::route('auth', 'register') ?>">
|
||
|
register
|
||
|
</a>
|
||
|
<?php else: ?>
|
||
|
logged in as <?php echo $this->context->user->name ?>
|
||
|
|
||
|
<a href="<?php echo \Chibi\UrlHelper::route('auth', 'logout') ?>">
|
||
|
logout
|
||
|
</a>
|
||
|
<?php endif ?>
|
||
|
</div>
|
||
|
|
||
|
<?php echo $this->renderView() ?>
|
||
|
</body>
|
||
|
</html>
|