2022-01-14 06:43:31 +00:00
|
|
|
|
<!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">
|
2022-01-15 10:26:02 +00:00
|
|
|
|
<title><?=htmlspecialchars($title);?> – Stafett for livet</title>
|
2022-01-14 06:43:31 +00:00
|
|
|
|
|
2022-01-20 08:34:52 +00:00
|
|
|
|
<link rel="stylesheet" href="<?=$this->config['root_url']?>static/style/main.css">
|
2022-01-14 06:43:31 +00:00
|
|
|
|
<body>
|
|
|
|
|
|
2022-01-16 16:12:04 +00:00
|
|
|
|
<div id="header">
|
2022-01-23 21:56:36 +00:00
|
|
|
|
<a href="<?=$this->config['root_url']?>">Stafett for livet tellesystem</a>
|
2022-01-16 16:12:04 +00:00
|
|
|
|
</div>
|
2022-01-14 06:43:31 +00:00
|
|
|
|
|
2022-01-16 16:12:04 +00:00
|
|
|
|
<hr class="hidden">
|
|
|
|
|
|
|
|
|
|
<div id="menu">
|
|
|
|
|
<small>
|
2022-01-23 21:56:36 +00:00
|
|
|
|
|
|
|
|
|
<?php if ($this->user->loggedIn): ?>
|
|
|
|
|
<span><?=htmlspecialchars($this->user->username)?></span>
|
|
|
|
|
<a href="<?=$this->config['root_url']?>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; ?>
|
|
|
|
|
|
2022-01-16 16:12:04 +00:00
|
|
|
|
</small>
|
2022-01-14 06:43:31 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
2022-01-16 16:12:04 +00:00
|
|
|
|
<hr class="hidden">
|
|
|
|
|
|
|
|
|
|
<div id="container">
|
2022-01-14 06:43:31 +00:00
|
|
|
|
|
2022-01-16 16:12:04 +00:00
|
|
|
|
<div id="nav">
|
|
|
|
|
<ul>
|
2022-01-20 08:34:52 +00:00
|
|
|
|
<li><a href="<?=$this->config['root_url']?>index.php">Forside</a></li>
|
|
|
|
|
<li><a href="<?=$this->config['root_url']?>login.php">Logg inn</a></li>
|
2022-01-23 21:56:36 +00:00
|
|
|
|
<li><a href="<?=$this->config['root_url']?>example.php">Eksempel</a></li>
|
2022-01-16 16:12:04 +00:00
|
|
|
|
</ul>
|
2022-01-14 06:43:31 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
2022-01-16 16:12:04 +00:00
|
|
|
|
<hr class="hidden">
|
|
|
|
|
|
|
|
|
|
<div id="main">
|
2022-01-23 21:56:36 +00:00
|
|
|
|
<?php
|
|
|
|
|
// Display flashed messages
|
|
|
|
|
$msgs = $this->session->getFlashedMessages();
|
|
|
|
|
if ($msgs)
|
|
|
|
|
{
|
|
|
|
|
foreach ($msgs as $msg)
|
|
|
|
|
{
|
|
|
|
|
echo "<div class=\"alert {$msg["type"]}\">{$msg["message"]}</div>";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
?>
|