feat(phase1): complete base structure - landing page, auth, dashboard, airports, API, DB schema, 60 airports CSV

This commit is contained in:
2026-04-24 15:53:59 +02:00
parent 2960bd4c2f
commit ab5f97acbf
18 changed files with 4926 additions and 0 deletions

11
www/public/logout.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
/**
* Airline Tycoon - Logout
*/
require_once dirname(__DIR__) . '/src/bootstrap.php';
Session::logout();
Session::flash('success', 'Du hast dich erfolgreich abgemeldet.');
redirect('/login.php');