public function register()
 {
     $model = new Model();
     $this->render('users.html', ['name' => $model->getText()]);
 }
 public function index()
 {
     $model = new Model();
     $this->render('index.html', ['name' => $model->getText()]);
 }