This commit is contained in:
2026-02-04 23:31:53 +01:00
commit cd59ccd99b
2401 changed files with 56808 additions and 0 deletions

10
pages/admin/index().php Normal file
View File

@@ -0,0 +1,10 @@
<?php
use MintyPHP\Buffer;
use MintyPHP\Support\Guard;
Guard::requireLogin();
$user = $_SESSION['user'] ?? null;
$first_name = $user['first_name'] ?? '';
Buffer::set('title', t('Admin'));