Update index

This commit is contained in:
mikael-zakaria 2025-07-14 16:45:59 +07:00
parent efce70e5a2
commit b98ba1c4a9
2 changed files with 13 additions and 1 deletions

View File

@ -5,7 +5,7 @@ use CodeIgniter\Router\RouteCollection;
/**
* @var RouteCollection $routes
*/
//$routes->get('/', 'Home::index');
$routes->get('/', 'Home::index');
$routes->post('/auth/login/', 'Auth::login');
$routes->post('/auth/change_pass/', 'Auth::change_pass');

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello World Page</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is a simple HTML page.</p>
</body>
</html>