Some checks failed
CI / PHP Lint (push) Waiting to run
CI / PHP Lint-1 (push) Waiting to run
CI / Unit Tests & Static Analysis (push) Waiting to run
CI / PHP Lint (pull_request) Has been cancelled
CI / PHP Lint-1 (pull_request) Has been cancelled
CI / Unit Tests & Static Analysis (pull_request) Has been cancelled
Frontend, Login/Installer/Updater und der komplette Admin-Bereich nutzen jetzt ein einziges Stylesheet (assets/global.css) statt pro Seite dupliziertem Inline-CSS. Design-System - Tokens für Flächen, Text, Linien, Marke, Status, Radien, Schatten und Layout-Maße; Dark Mode ausschließlich über Tokens (keine !important- Overrides mehr) - Komponenten: Buttons, Formularfelder, Cards, Tabellen, Badges, Alerts, Tabs, Pagination, Modals, Toasts, Statistik-Kacheln, Empty States - Schrift Inter mit System-Fallback Oberfläche - Admin-Shell neu: durchgehende Sidebar mit Marke, gruppierter Navigation und Benutzerbereich; schlanke Topbar mit Breadcrumb - Dashboard: ruhige KPI-Kacheln mit Icon-Chips, Charts an Theme-Farben gekoppelt - Öffentliche Voucher-Seite: App-Topbar, klare Formularstruktur und Ticket-Darstellung des erstellten Codes inkl. QR-Code - Login/Passwort/2FA: zweispaltiges Auth-Layout bzw. Fokus-Karten - Updater und Wartungsmodus im gleichen Look (Wartungsseite bleibt bewusst eigenständig ohne externe Abhängigkeiten) - Emoji-Icons in der UI durch Font-Awesome-Icons ersetzt Nebenbei behoben - Falscher SRI-Hash blockierte qrcode.min.js – QR-Codes wurden auf der Voucher-Seite und bei der 2FA-Einrichtung nie gerendert - assets/global.css wurde in mehreren Admin-Seiten über einen falschen Pfad eingebunden ($adminBase = '' statt '../') - TinyMCE lädt ohne API-Key jetzt die GPL-Variante von cdnjs – kein "valid API key required"-Banner mehr im Einstellungs-Editor - Tabellen in Cards scrollen horizontal statt zu überlaufen Screenshots in docs/screenshots neu erstellt, README aktualisiert (neuer Abschnitt "Design-System", Version 2.5.0). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
254 lines
10 KiB
PHP
254 lines
10 KiB
PHP
<?php
|
||
error_reporting(E_ALL);
|
||
ini_set('display_errors', 0);
|
||
ini_set('log_errors', 1);
|
||
|
||
require_once __DIR__ . '/config.php';
|
||
require_once __DIR__ . '/includes/Database.php';
|
||
require_once __DIR__ . '/includes/Auth.php';
|
||
require_once __DIR__ . '/includes/I18n.php';
|
||
|
||
try {
|
||
$auth = new Auth();
|
||
if ($auth->isLoggedIn()) { header('Location: index.php'); exit; }
|
||
} catch (Exception $e) {
|
||
die('Fehler beim Initialisieren: ' . $e->getMessage());
|
||
}
|
||
|
||
I18n::init();
|
||
|
||
$error = '';
|
||
$success = '';
|
||
$show2fa = false;
|
||
|
||
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['totp_code'])) {
|
||
// Zweiter Login-Schritt: 2FA-Code
|
||
try {
|
||
if ($auth->verifyTotpLogin(trim($_POST['totp_code']))) {
|
||
header('Location: index.php');
|
||
exit;
|
||
}
|
||
$error = 'Code ungültig oder abgelaufen. Bitte erneut versuchen.';
|
||
$show2fa = $auth->isTotpPending();
|
||
} catch (Exception $e) {
|
||
$error = 'Login-Fehler: ' . $e->getMessage();
|
||
}
|
||
} elseif ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||
try {
|
||
$email = trim($_POST['email'] ?? '');
|
||
$password = $_POST['password'] ?? '';
|
||
|
||
if (empty($email) || empty($password)) {
|
||
$error = __('login_error_empty');
|
||
} else {
|
||
$result = $auth->login($email, $password);
|
||
if ($result === true) {
|
||
header('Location: index.php');
|
||
exit;
|
||
} elseif ($result === 'totp_required') {
|
||
$show2fa = true;
|
||
} elseif ($result === 'rate_limited') {
|
||
$error = __('login_error_rate');
|
||
} else {
|
||
$error = __('login_error_creds');
|
||
}
|
||
}
|
||
} catch (Exception $e) {
|
||
$error = 'Login-Fehler: ' . $e->getMessage();
|
||
}
|
||
}
|
||
|
||
// Direkter Aufruf mit ?2fa=1 (z.B. nach Redirect) und noch ausstehendem Login
|
||
if (!$show2fa && isset($_GET['2fa']) && $auth->isTotpPending()) {
|
||
$show2fa = true;
|
||
}
|
||
|
||
try {
|
||
$db = Database::getInstance();
|
||
$appTitle = $db->getSetting('app_title', 'UniFi Voucher System');
|
||
$logoUrl = $db->getSetting('logo_url', '');
|
||
|
||
$m365ClientId = $db->getSetting('m365_client_id', '');
|
||
$m365ClientSecret = $db->getSetting('m365_client_secret', '');
|
||
$m365TenantId = $db->getSetting('m365_tenant_id', '');
|
||
$m365Enabled = !empty($m365ClientId) && !empty($m365ClientSecret) && !empty($m365TenantId);
|
||
$publicAccess = $db->getSetting('public_access', 0);
|
||
$smtpEnabled = $db->getSetting('smtp_enabled', '0') === '1';
|
||
|
||
$m365LoginUrl = '';
|
||
if ($m365Enabled) {
|
||
$protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http';
|
||
$host = $_SERVER['HTTP_HOST'];
|
||
$scriptPath = dirname($_SERVER['SCRIPT_NAME']);
|
||
$scriptPath = $scriptPath === '/' ? '' : $scriptPath;
|
||
$redirectUri = $protocol . '://' . $host . $scriptPath . '/m365_callback.php';
|
||
$params = [
|
||
'client_id' => $m365ClientId,
|
||
'response_type' => 'code',
|
||
'redirect_uri' => $redirectUri,
|
||
'response_mode' => 'query',
|
||
'scope' => 'openid profile email User.Read',
|
||
'state' => bin2hex(random_bytes(16))
|
||
];
|
||
$_SESSION['m365_state'] = $params['state'];
|
||
$m365LoginUrl = "https://login.microsoftonline.com/$m365TenantId/oauth2/v2.0/authorize?" . http_build_query($params);
|
||
}
|
||
|
||
// Generisches OIDC (optional)
|
||
$oidcEnabled = $db->getSetting('oidc_enabled', '0') === '1'
|
||
&& $db->getSetting('oidc_client_id', '') !== ''
|
||
&& $db->getSetting('oidc_auth_url', '') !== '';
|
||
$oidcName = $db->getSetting('oidc_name', 'SSO');
|
||
$oidcLoginUrl = '';
|
||
if ($oidcEnabled) {
|
||
$protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http';
|
||
$scriptPath = dirname($_SERVER['SCRIPT_NAME']);
|
||
$scriptPath = $scriptPath === '/' ? '' : $scriptPath;
|
||
$oidcState = bin2hex(random_bytes(16));
|
||
$_SESSION['oidc_state'] = $oidcState;
|
||
$oidcLoginUrl = rtrim($db->getSetting('oidc_auth_url', ''), '?') . '?' . http_build_query([
|
||
'client_id' => $db->getSetting('oidc_client_id', ''),
|
||
'response_type' => 'code',
|
||
'redirect_uri' => $protocol . '://' . $_SERVER['HTTP_HOST'] . $scriptPath . '/oidc_callback.php',
|
||
'scope' => $db->getSetting('oidc_scopes', 'openid profile email'),
|
||
'state' => $oidcState,
|
||
]);
|
||
}
|
||
|
||
$showLocalLogin = isset($_GET['local']) && $_GET['local'] === '1';
|
||
|
||
} catch (Exception $e) {
|
||
die('Datenbankfehler: ' . $e->getMessage());
|
||
}
|
||
?>
|
||
<!DOCTYPE html>
|
||
<html lang="<?= I18n::getLanguage() ?>">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title><?= __('login_title') ?> – <?= htmlspecialchars($appTitle) ?></title>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||
<link rel="stylesheet" href="assets/global.css">
|
||
<script>(function(){ const t=localStorage.getItem('theme')||'light'; document.documentElement.setAttribute('data-theme',t); })();</script>
|
||
</head>
|
||
<body class="auth-body">
|
||
|
||
<section class="auth-visual">
|
||
<div class="auth-brand">
|
||
<span class="brand-mark"><i class="fas fa-wifi"></i></span>
|
||
<span><?= htmlspecialchars($appTitle) ?></span>
|
||
</div>
|
||
<div class="auth-claim">
|
||
<h2><?= __('auth_claim_title') ?></h2>
|
||
<p><?= __('auth_claim_text') ?></p>
|
||
<ul class="auth-features">
|
||
<li><span class="tick"><i class="fas fa-check"></i></span> <?= __('auth_feature_1') ?></li>
|
||
<li><span class="tick"><i class="fas fa-check"></i></span> <?= __('auth_feature_2') ?></li>
|
||
<li><span class="tick"><i class="fas fa-check"></i></span> <?= __('auth_feature_3') ?></li>
|
||
</ul>
|
||
</div>
|
||
<div class="auth-foot">© <?= date('Y') ?> <?= htmlspecialchars($appTitle) ?></div>
|
||
</section>
|
||
|
||
<section class="auth-panel">
|
||
<div class="auth-tools">
|
||
<div class="lang-switcher">
|
||
<?php foreach (I18n::getAvailable() as $code => $label): ?>
|
||
<button class="lang-btn <?= I18n::getLanguage() === $code ? 'active' : '' ?>"
|
||
onclick="switchLanguage('<?= $code ?>')"><?= strtoupper($code) ?></button>
|
||
<?php endforeach; ?>
|
||
</div>
|
||
<button id="darkModeBtn" class="dark-mode-toggle" onclick="toggleDarkMode()" title="Dark Mode">
|
||
<i class="fas fa-moon"></i>
|
||
</button>
|
||
</div>
|
||
|
||
<div class="login-container">
|
||
<?php if ($logoUrl): ?>
|
||
<img src="<?= htmlspecialchars($logoUrl) ?>" alt="Logo" class="logo">
|
||
<?php endif; ?>
|
||
<h1><?= __('login_title') ?></h1>
|
||
<p class="subtitle"><?= __('login_subtitle') ?></p>
|
||
|
||
<?php if ($error): ?>
|
||
<div class="alert alert-error"><?= htmlspecialchars($error) ?></div>
|
||
<?php endif; ?>
|
||
<?php if ($success): ?>
|
||
<div class="alert alert-success"><?= htmlspecialchars($success) ?></div>
|
||
<?php endif; ?>
|
||
|
||
<?php if ($show2fa): ?>
|
||
<form method="post">
|
||
<p class="subtitle">
|
||
Bitte geben Sie den 6-stelligen Code aus Ihrer Authenticator-App ein
|
||
– oder einen Ihrer Recovery-Codes.
|
||
</p>
|
||
<div class="form-group">
|
||
<label for="totp_code">Code</label>
|
||
<input type="text" id="totp_code" name="totp_code" maxlength="9" class="code-input"
|
||
autocomplete="one-time-code" required autofocus
|
||
placeholder="123456">
|
||
</div>
|
||
<button type="submit" class="btn btn-primary btn-lg">Bestätigen</button>
|
||
</form>
|
||
<div class="auth-links"><a href="login.php" class="local-login-link">Abbrechen</a></div>
|
||
<?php elseif ($m365Enabled && !$showLocalLogin): ?>
|
||
<a href="<?= htmlspecialchars($m365LoginUrl) ?>" class="btn-microsoft">
|
||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23">
|
||
<path fill="#f35325" d="M1 1h10v10H1z"/>
|
||
<path fill="#81bc06" d="M12 1h10v10H12z"/>
|
||
<path fill="#05a6f0" d="M1 12h10v10H1z"/>
|
||
<path fill="#ffba08" d="M12 12h10v10H12z"/>
|
||
</svg>
|
||
<?= __('login_ms') ?>
|
||
</a>
|
||
<div class="auth-links"><a href="?local=1" class="local-login-link"><?= __('login_local') ?></a></div>
|
||
<?php else: ?>
|
||
<form method="post">
|
||
<div class="form-group">
|
||
<label for="email"><?= __('login_email') ?></label>
|
||
<input type="email" id="email" name="email" required autofocus>
|
||
</div>
|
||
<div class="form-group">
|
||
<label for="password"><?= __('login_password') ?></label>
|
||
<input type="password" id="password" name="password" required>
|
||
</div>
|
||
<?php if ($smtpEnabled): ?>
|
||
<a href="forgot_password.php" class="forgot-link"><?= __('login_forgot') ?></a>
|
||
<?php endif; ?>
|
||
<button type="submit" class="btn btn-primary btn-lg"><?= __('login_btn') ?></button>
|
||
</form>
|
||
|
||
<?php if ($m365Enabled): ?>
|
||
<div class="divider"><span><?= __('or') ?></span></div>
|
||
<a href="<?= htmlspecialchars($m365LoginUrl) ?>" class="btn-microsoft">
|
||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23">
|
||
<path fill="#f35325" d="M1 1h10v10H1z"/>
|
||
<path fill="#81bc06" d="M12 1h10v10H12z"/>
|
||
<path fill="#05a6f0" d="M1 12h10v10H1z"/>
|
||
<path fill="#ffba08" d="M12 12h10v10H12z"/>
|
||
</svg>
|
||
<?= __('login_ms') ?>
|
||
</a>
|
||
<?php endif; ?>
|
||
<?php endif; ?>
|
||
|
||
<?php if (!$show2fa && $oidcEnabled): ?>
|
||
<div class="divider"><span><?= __('or') ?></span></div>
|
||
<a href="<?= htmlspecialchars($oidcLoginUrl) ?>" class="btn btn-secondary btn-lg">
|
||
<i class="fas fa-key"></i> <?= htmlspecialchars($oidcName) ?>
|
||
</a>
|
||
<?php endif; ?>
|
||
|
||
<?php if ($publicAccess): ?>
|
||
<div class="auth-links"><a href="index.php" class="back-link"><i class="fas fa-arrow-left"></i> <?= __('login_back') ?></a></div>
|
||
<?php endif; ?>
|
||
</div>
|
||
</section>
|
||
|
||
<script src="assets/global.js"></script>
|
||
</body>
|
||
</html>
|