<?php include_once "include/default-values.php" ?>

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>EDEA - Logout</title>
    <link rel="stylesheet" href="<?= $siteroot; ?>css/style.css">
</head>

<body>
    <?php
    unset($_SESSION["username"]);
    ?>
    <?php include "include/header.php"; ?>
    <main>
        <h1>Logout</h1>
        <h2>Du er nu logget ud!</h2>
    </main>
    <?php include "include/footer.php"; ?>
</body>

</html>