This commit is contained in:
Olu Amey
2021-06-18 23:29:01 +00:00
parent fda389fdcb
commit 261593fffb
5 changed files with 262 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Controllers;
class Privacy extends BaseController {
public function index() {
$data = array();
$this->renderExtPage('privacy', $data);
}
//--------------------------------------------------------------------
}