Example #1
0
<?php

Route::get('/', CONTROLLERS . 'home.php');
Route::get('/login', CONTROLLERS . 'login.php');
Route::post('/login', CONTROLLERS . 'login.php');
Route::get('/logout', CONTROLLERS . 'logout.php');
// Route::get('/resetpw/:value', CONTROLLERS.'resetpw.php');
Route::get('/about', CONTROLLERS . 'about.php');
Route::get('/bio', CONTROLLERS . 'bio.php');
Route::get('/statement', CONTROLLERS . 'statement.php');
Route::get('/press', CONTROLLERS . 'press.php');
Route::get('/recent', CONTROLLERS . 'recent.php');
Route::get('/work', CONTROLLERS . 'work.php');
Route::get('/works', CONTROLLERS . 'works.php');
Route::get('/texts', CONTROLLERS . 'texts.php');
Route::get('/documentation', CONTROLLERS . 'documentation.php');
Route::get('/more', CONTROLLERS . 'more.php');
Route::get('/portal', CONTROLLERS . 'portal.php');
Route::get('/contact', CONTROLLERS . 'contact.php');
Route::fallback(VIEWS . '404.php');