예제 #1
0
 public function action_index()
 {
     if (isset($_POST['input_staffNo'])) {
         $staffNo = $_POST['input_staffNo'];
         if (!empty($staff = Model_Staff::isExist($staffNo))) {
             Session::set(self::LOGIN, $staff->id);
             return Response::redirect('client');
         } else {
             $this->template->title = 'ログイン';
             $this->template->content = View::forge('client/login_error');
         }
     } else {
         $this->template->title = 'ログイン';
         $this->template->content = View::forge('client/login');
     }
 }