11 lines
236 B
PHP
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'); |