Files
novaconium/controllers/dashboard.php
T
2026-07-04 07:43:33 -07:00

14 lines
338 B
PHP

<?php
$ctx->withData([
'title' => 'Novaconium Dashboard Page',
'pageclass' => 'novaconium',
'pageid' => 'controlPanel'
]);
if ( empty($ctx->session->get('username'))) {
$ctx->redirect->url('/novaconium/login');
$ctx->messages->error('You are not loggedin');
makeitso();
}
view('@novacore/dashboard', $ctx->data);