Profile pages added

This commit is contained in:
2019-03-04 18:53:47 +00:00
parent aee85ff834
commit c3154702f6
4 changed files with 22 additions and 0 deletions
@@ -0,0 +1,22 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Profile extends Provider_Controller {
public function index() {
$data = array();
$this->renderProviderSecurePage('profile/profile', $data);
}
public function inbox() {
$data = array();
$this->renderProviderSecurePage('profile/inbox', $data);
}
public function setttings() {
$data = array();
$this->renderProviderSecurePage('profile/setttings', $data);
}
}