This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/view/template/header.php
2022-02-07 11:05:53 +01:00

63 lines
2.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?=htmlspecialchars($title);?> Stafett for livet</title>
<link rel="stylesheet" href="<?=$this->config['root_url']?>static/style/main.css">
<body>
<div id="header">
<a href="<?=$this->config['root_url']?>">Stafett for livet tellesystem</a>
</div>
<hr class="hidden">
<div id="menu">
<small>
<?php if ($this->user->loggedIn): ?>
<span><?=htmlspecialchars($this->user->username)?></span>
<a href="<?=$this->config['root_url']?>confirm-logout.php">Logg ut</a>
<?php else: ?>
<span>Ikke pålogget</span>
<a href="<?=$this->config['root_url']?>login.php">Logg inn</a>
<?php endif; ?>
</small>
</div>
<hr class="hidden">
<div id="container">
<div id="nav">
<h4>Felles</h4>
<ul>
<li><a href="<?=$this->config['root_url']?>index.php">Forside</a></li>
<li><a href="<?=$this->config['root_url']?>example.php">Eksempel</a></li>
<li><a href="<?=$this->config['root_url']?>simulator.php">Simulator</a></li>
<li><a href="<?=$this->config['root_url']?>teamtable/index.php">Se lagene</a></li>
</ul>
<h4>Rettigheter</h4>
<ul>
<li><a href="<?=$this->config['root_url']?>teamtable/edit/index.php">Endre lagene</a></li>
</ul>
</div>
<hr class="hidden">
<div id="main">
<?php
// Display flashed messages
$msgs = $this->session->getFlashedMessages();
if ($msgs)
{
foreach ($msgs as $msg)
{
echo "<div class=\"alert {$msg["type"]}\">{$msg["message"]}</div>";
}
}
?>