Problem with Login form using Codeigniter

Hi, thank you for helping me out. So just to share, this is my current routes.php:

    $route['default_controller'] = 'pages/view';
$route['authorized/(:any)'] = 'elogin/view/$1';
$route['(:any)'] = 'pages/view/$1';


$route['404_override'] = '';

so I should add verifylogin.php in the routes? Forgive me, I’m just a newbie in CI. I thought VIEWS is the thing to be routed. So even the file in CONTROLLERS folder can be routed?