Initial dev export (exclude uploads/runtime)
This commit is contained in:
15
modules/admin/views/dashboard.php
Normal file
15
modules/admin/views/dashboard.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
$pageTitle = 'Admin';
|
||||
ob_start();
|
||||
?>
|
||||
<section class="card">
|
||||
<div class="badge">Admin</div>
|
||||
<h1 style="margin-top:16px; font-size:28px;">Welcome</h1>
|
||||
<p style="color:var(--muted);">Admin module is live. Use Settings to update the footer text.</p>
|
||||
<div style="margin-top:16px;">
|
||||
<a href="/admin/settings" class="btn">Settings</a>
|
||||
</div>
|
||||
</section>
|
||||
<?php
|
||||
$content = ob_get_clean();
|
||||
require __DIR__ . '/layout.php';
|
||||
Reference in New Issue
Block a user