Files
Felix KemmlerandClaude Sonnet 5 e9e96a57dc Add facilities, contracts, orders, value lists, audit log, and desktop app modules
Extends omsorgCore with full CRUD for Facility/Contract/Order plus
configurable value lists and an audit trail, and wires the omsorgapp
frontend up to the new facilities, settings, and audit-log modules;
includes a sidebar active-nav-item highlight.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-08 23:29:16 +02:00

19 lines
660 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
require_once __DIR__ . '/../lib/auth.php';
require_once __DIR__ . '/../lib/layout.php';
require_login();
// Nach Direct-Anlage/Admin-Reset muss zuerst ein eigenes Passwort gesetzt werden, bevor es
// weitergeht (Flag kommt aus der Login-Response, siehe _apply_token_pair in lib/auth.php).
if (!empty($_SESSION['omsorgcore_must_change_password'])) {
header('Location: settings.php?forced=1');
exit;
}
layout_start('Dashboard Mitarbeiter-App');
?>
<h1 class="main-title">Willkommen, <span><?= e(current_name()) ?></span></h1>
<p class="main-sub">Eingeloggt als <?= e(current_username()) ?> (<?= e(current_role()) ?>).</p>
<?php
layout_end();