First git commit

This commit is contained in:
root
2026-09-08 18:21:10 +01:00
commit 66911dc450
65 changed files with 7012 additions and 0 deletions

8
public_html/logout.php Normal file
View File

@ -0,0 +1,8 @@
<?php
require_once __DIR__ . '/lib/bootstrap.php';
$_SESSION['uid'] = null;
unset($_SESSION['uid']);
page_start('Logged out', ['back' => '/index.php']);
p_ok('You are logged out.');
p_links([['/index.php', 'Home'], ['/login.php', 'Log in again']]);
page_end();