19 lines
748 B
PHP
Executable File
19 lines
748 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en" data-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= htmlspecialchars($title ?? 'ServerManager') ?></title>
|
|
<link rel="icon" type="image/svg+xml" href="/assets/img/server.svg">
|
|
<link rel="stylesheet" href="/assets/css/style.css?v=<?= asset_version() ?>">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
</head>
|
|
<body class="auth-page">
|
|
<div class="auth-container">
|
|
<?= $content ?? '' ?>
|
|
</div>
|
|
<div id="toastContainer" class="toast-container"></div>
|
|
<script src="/assets/js/app.js?v=<?= asset_version() ?>"></script>
|
|
</body>
|
|
</html>
|