summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/user/controllers')
-rw-r--r--application/modules/user/controllers/IndexController.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/application/modules/user/controllers/IndexController.php b/application/modules/user/controllers/IndexController.php
new file mode 100644
index 0000000..934b9ba
--- /dev/null
+++ b/application/modules/user/controllers/IndexController.php
@@ -0,0 +1,18 @@
+<?php
+
+class User_IndexController extends Zend_Controller_Action
+{
+
+ public function init()
+ {
+ /* Initialize action controller here */
+ }
+
+ public function indexAction()
+ {
+ $this->view->loginform = new user_Form_Login();
+ }
+
+
+}
+