From 074cdb4bea7961606704355a391b5beec518ac0c Mon Sep 17 00:00:00 2001 From: Isaac Machakata Date: Wed, 27 Mar 2024 05:04:51 +0200 Subject: [PATCH] refactor: add account views --- app/Views/home/accounts.php | 58 ++++++++++++++++++++++ app/Views/home/admin.php | 93 +++++++++++++++++++++++++++++++++++ app/Views/home/supervisor.php | 75 ++++++++++++++++++++++++++++ 3 files changed, 226 insertions(+) create mode 100644 app/Views/home/accounts.php create mode 100644 app/Views/home/admin.php create mode 100644 app/Views/home/supervisor.php diff --git a/app/Views/home/accounts.php b/app/Views/home/accounts.php new file mode 100644 index 0000000..fd23da1 --- /dev/null +++ b/app/Views/home/accounts.php @@ -0,0 +1,58 @@ +setVar('title', 'Home'); +echo $this->include('_templates/head'); ?> +
+
+ include('_templates/header'); ?> +
+
+
+
+
+
Advanced Salary
+

With supporting text below as a natural lead-in to additional content.

+ New Requisition +
+
+
+
+
+
+
Petty Cash
+

With supporting text below as a natural lead-in to additional content.

+ New Requisition +
+
+
+
+
+
+
Travel & Subsistence
+

With supporting text below as a natural lead-in to additional content.

+ New Requisition +
+
+
+
+
+
+
Change Password
+

With supporting text below as a natural lead-in to additional content.

+ Change Password +
+
+
+
+
+
+
Logout
+

With supporting text below as a natural lead-in to additional content.

+ Log Out +
+
+
+
+
+
+
+include('_templates/footer'); ?> \ No newline at end of file diff --git a/app/Views/home/admin.php b/app/Views/home/admin.php new file mode 100644 index 0000000..512faa0 --- /dev/null +++ b/app/Views/home/admin.php @@ -0,0 +1,93 @@ +setVar('title', 'Home'); +echo $this->include('_templates/head'); ?> +
+
+ include('_templates/header'); ?> + include('_templates/user-type'); ?> + include('_templates/alerts'); ?> + +
+
+include('_templates/footer'); ?> \ No newline at end of file diff --git a/app/Views/home/supervisor.php b/app/Views/home/supervisor.php new file mode 100644 index 0000000..624475d --- /dev/null +++ b/app/Views/home/supervisor.php @@ -0,0 +1,75 @@ +setVar('title', 'Home'); +echo $this->include('_templates/head'); ?> +
+
+ include('_templates/header'); ?> + include('_templates/user-type'); ?> +
+
+
+
+
Advanced Salary
+

With supporting text below as a natural lead-in to additional content.

+ New Salary Requisition +
+
+
+
+
+
+
Petty Cash
+

With supporting text below as a natural lead-in to additional content.

+ New Petty Cash Requisition +
+
+
+
+
+
+
Travel & Subsistencies
+

With supporting text below as a natural lead-in to additional content.

+ Travel & Subsistencies Requisition +
+
+
+
+
+
+
View User Report
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+
+
+
+
+
+
Authorization
+

With supporting text below as a natural lead-in to additional content.

+ Go somewhere +
+
+
+
+
+
+
Change Password
+

With supporting text below as a natural lead-in to additional content.

+ Change Password +
+
+
+
+
+
+
Logout
+

With supporting text below as a natural lead-in to additional content.

+ Log Out +
+
+
+
+
+
+include('_templates/footer'); ?> \ No newline at end of file