id/views/signedout.php

26 lines
558 B
PHP
Raw Normal View History

2024-07-01 22:15:51 +01:00
<?php
$_SESSION['auth'] = false;
session_destroy();
?>
<!doctype html>
<html lang="$lang_code">
<head>
<title>Signed out ~> ByeCorps ID</title>
<?php include 'partials/head.php'; ?>
</head>
<body>
<?php include 'partials/header.php'; ?>
<main>
<center>
<div class="largeicon">
<span class="fa-fw fa-solid fa-person-through-window"></span>
</div>
<p><?= get_string('auth.signedout'); ?></p>
</center>
</main>
<?php include 'partials/footer.php'; ?>
</body>
</html>