From c3154702f6c662b918069cc0b2f71333dd4999f4 Mon Sep 17 00:00:00 2001 From: Olusesan Ameye Date: Mon, 4 Mar 2019 18:53:47 +0000 Subject: [PATCH] Profile pages added --- .../application/controllers/Profile.php | 22 +++++++++++++++++++ .../views/provider/profile/inbox.php | 0 .../views/provider/profile/profile.php | 0 .../views/provider/profile/settings.php | 0 4 files changed, 22 insertions(+) create mode 100644 providerwww/application/controllers/Profile.php create mode 100644 providerwww/application/views/provider/profile/inbox.php create mode 100644 providerwww/application/views/provider/profile/profile.php create mode 100644 providerwww/application/views/provider/profile/settings.php diff --git a/providerwww/application/controllers/Profile.php b/providerwww/application/controllers/Profile.php new file mode 100644 index 0000000..faca37e --- /dev/null +++ b/providerwww/application/controllers/Profile.php @@ -0,0 +1,22 @@ +renderProviderSecurePage('profile/profile', $data); + } + + public function inbox() { + $data = array(); + $this->renderProviderSecurePage('profile/inbox', $data); + } + + public function setttings() { + $data = array(); + $this->renderProviderSecurePage('profile/setttings', $data); + } + +} diff --git a/providerwww/application/views/provider/profile/inbox.php b/providerwww/application/views/provider/profile/inbox.php new file mode 100644 index 0000000..e69de29 diff --git a/providerwww/application/views/provider/profile/profile.php b/providerwww/application/views/provider/profile/profile.php new file mode 100644 index 0000000..e69de29 diff --git a/providerwww/application/views/provider/profile/settings.php b/providerwww/application/views/provider/profile/settings.php new file mode 100644 index 0000000..e69de29