public function index()
 {
     // Loading Gettext Language File ...
     (new Lang())->load('hello_world');
     $sUsr = $this->config->values['module.setting']['user'];
     $sPwd = $this->config->values['module.setting']['password'];
     if (Http::requireAuth($sUsr, $sPwd)) {
         // Meta Tags
         $this->view->page_title = t('HTTP Secure Page');
         $this->view->meta_description = t('Simple HTTP Secure Page');
         $this->view->meta_keywords = t('secure,CMS,PHP,framework,MVC,page,HTTP');
         /* H TITLE html tag H1 to H4 */
         $this->view->h1_title = t('HTTP Secure Page');
         // Assign variavle
         $this->view->user = $sUsr;
         // Output Template
         $this->output();
     }
 }