Big Update Added Services and Admin

This commit is contained in:
2025-06-22 11:26:57 -07:00
parent 8f462953b7
commit caca552cae
32 changed files with 683 additions and 46 deletions

20
config/routes.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
$framework_routes = [
'/novaconium' => [
'get' => 'NOVACONIUM/init'
],
'/novaconium/create_admin' => [
'post' => 'NOVACONIUM/create_admin'
],
'/novaconium/login' => [
'post' => 'NOVACONIUM/authenticate',
'get' => 'NOVACONIUM/login'
],
'/novaconium/dashboard' => [
'get' => 'NOVACONIUM/dashboard'
],
'/novaconium/logout' => [
'post' => 'NOVACONIUM/logout',
'get' => 'NOVACONIUM/logout'
]
];