+ Login
+Welcome back, please login to your account.
+diff --git a/app/Config/Routes.php b/app/Config/Routes.php index fdb51cf..4e774c9 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -40,7 +40,10 @@ $routes->get('/privacy', 'Home::privacy'); $routes->get('/contact', 'Home::contact'); $routes->get('/howitworks', 'Home::howitworks'); -$routes->get('/auth', 'Home::index'); +$routes->get('/auth', 'Home::login'); +$routes->get('/newuser', 'Home::login'); +$routes->get('/restpass', 'Home::login'); + $routes->get('/tools', 'Tools::index'); diff --git a/app/Controllers/Home.php b/app/Controllers/Home.php index 27167bf..2b8f215 100644 --- a/app/Controllers/Home.php +++ b/app/Controllers/Home.php @@ -35,6 +35,11 @@ class Home extends BaseController return view('home/index'); } + public function login() + { + return view('home/login'); + } + public function howitworks() { return view('home/howitworks'); diff --git a/app/Views/home/login.php b/app/Views/home/login.php new file mode 100644 index 0000000..1edeb08 --- /dev/null +++ b/app/Views/home/login.php @@ -0,0 +1,91 @@ += $this->extend('layouts/loginlayout') ?> + += $this->section('content') ?> + + + +
+ Welcome back, please login to your account.
+