diff --git a/CCF/app/controllers/AuthController.php b/CCF/app/controllers/AuthController.php index 695064e..0c7e755 100644 --- a/CCF/app/controllers/AuthController.php +++ b/CCF/app/controllers/AuthController.php @@ -24,7 +24,7 @@ public function action_sign_in() // theme this allows us to have a diffrent sign_in for every theme. // If the view does not exist in the theme it will load the view from // the default view folder. - $this->view = $this->theme->view( 'auth/sign_in' ); + $this->view = $this->theme->view( 'auth/sign_in.view' ); $this->view->last_identifier = CCIn::post( 'identifier' ); @@ -68,7 +68,7 @@ public function action_sign_up() } $this->theme->topic = __( ':action.topic' ); - $this->view = $this->theme->view( 'auth/sign_up' ); + $this->view = $this->theme->view( 'auth/sign_up.view' ); // create a new user object as data holder $user = new User; diff --git a/CCF/app/views/auth/sign_in.php b/CCF/app/views/auth/sign_in.php deleted file mode 100644 index 0697b0e..0000000 --- a/CCF/app/views/auth/sign_in.php +++ /dev/null @@ -1,49 +0,0 @@ - -