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

11 lines
230 B
PHP
Raw Normal View History

2022-01-24 10:46:44 +00:00
<?php
$app = require '../app/inc.php';
2022-01-25 16:31:11 +00:00
if (!$app->user->loggedIn)
{
$app->redirect('index.php');
}
2022-01-24 10:46:44 +00:00
$app->view('template/header', ["title" => "Bekreft avlogging"]);
$app->view('confirm_logout');
$app->view('template/footer');