diff options
Diffstat (limited to 'system/application/controllers')
-rw-r--r-- | system/application/controllers/index.html | 15 | ||||
-rw-r--r-- | system/application/controllers/welcome.php | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/system/application/controllers/index.html b/system/application/controllers/index.html new file mode 100644 index 000000000..5a1f5d6ae --- /dev/null +++ b/system/application/controllers/index.html @@ -0,0 +1,15 @@ +<html>
+
+<head>
+
+<title>403 Forbidden</title>
+
+</head>
+
+<body bgcolor='#ffffff'>
+
+<p>Directory access is forbidden.<p>
+
+</body>
+
+</html>
\ No newline at end of file diff --git a/system/application/controllers/welcome.php b/system/application/controllers/welcome.php new file mode 100644 index 000000000..7f7296d81 --- /dev/null +++ b/system/application/controllers/welcome.php @@ -0,0 +1,15 @@ +<?php + +class Welcome extends Controller { + + function Welcome() + { + parent::Controller(); + } + + function index() + { + $this->load->view('welcome_message'); + } +} +?>
\ No newline at end of file |