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/public/confirm-logout.php
2022-02-08 22:59:47 +01:00

11 lines
236 B
PHP

<?php
$app = require '../app/inc.php';
if (!$app->user->loggedIn)
{
$app->redirect('index.php');
}
$app->view('template/header', ["title" => "Bekreft avlogging"]);
$app->view('pages/confirm-logout');
$app->view('template/footer');