public function processLoginAction(Request $request)
 {
     $username = $request->get('username');
     echo '$username='******'<br/>';
     $password = $request->get('password');
     echo '$password='******'<br/>';
     $query = "\n        select\n            user_id\n        from\n            aca_user\n        where\n            username = '******'\n            and password = '******';";
     $db = new Database();
     $data = $db->fetchRows($query);
     print_r($data);
     die;
     //        $username = $_POST['username'];
     //        $password = $_POST['password'];
     // Run a query against the DB
     // Check for the record that exists or not
     // If you find a record, its a valid user
     // If you dont, they are not valid.
     // If they are valid, set things to session
     // Make the login boxes go away!
 }