13 lines
281 B
PHP
13 lines
281 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use CodeIgniter\Router\RouteCollection;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @var RouteCollection $routes
|
||
|
|
*/
|
||
|
|
//$routes->get('/', 'Home::index');
|
||
|
|
|
||
|
|
$routes->post('/auth/login/', 'Auth::login');
|
||
|
|
$routes->post('/auth/change_pass/', 'Auth::change_pass');
|
||
|
|
$routes->post('/auth/register/', 'Auth::register');
|