public function indexAction()
 {
     $this->view = parent::loadView();
     $data = ['page_title' => 'Domyślny kontroler'];
     $this->view->load('header', $data);
     $this->view->load('welcome');
     $this->view->load('footer');
 }
 public function indexAction()
 {
     $this->view = parent::loadView();
     $data = ['page_title' => 'Rejestracja'];
     $this->view->load('header', $data);
     $this->view->load('register');
     $this->view->load('footer');
 }