31 lines
779 B
PHP
Executable File
31 lines
779 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Gymrooster</title>
|
|
<link rel="stylesheet" href="/css/index.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<!-- Topnav -->
|
|
<a href="/"><img src="/res/HLC.svg" title="Home"></a>
|
|
<?php if (isAuthorized()): ?>
|
|
<a href="/logout">Log uit</a>
|
|
<?php else: ?>
|
|
<a href="/login">Login</a>
|
|
<?php endif; ?>
|
|
</nav>
|
|
|
|
<main>
|
|
<?=$output;?>
|
|
</main>
|
|
|
|
<a id="help" href="/help">Help</a>
|
|
|
|
<footer>
|
|
<!-- Footer -->
|
|
Made by <a target="_blank" href="//arnweb.nl/">McArn</a> and <a target="_blank" href="//jobbel.nl">JoVo</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|