diff --git a/ui/ui/maintenance-mode.tpl b/ui/ui/maintenance-mode.tpl
new file mode 100644
index 0000000..2f94e25
--- /dev/null
+++ b/ui/ui/maintenance-mode.tpl
@@ -0,0 +1,106 @@
+{include file="sections/header.tpl"}
+
+
+
+{include file="sections/footer.tpl"}
\ No newline at end of file
diff --git a/ui/ui/maintenance.tpl b/ui/ui/maintenance.tpl
new file mode 100644
index 0000000..80a79f5
--- /dev/null
+++ b/ui/ui/maintenance.tpl
@@ -0,0 +1,249 @@
+
+
+
+
+ {Lang::T('Site is down for maintenance')}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{Lang::T('Site is temporarily unavailable.')}
+
{Lang::T('Scheduled maintenance is currently in progress. Please check back soon.')}
+
{Lang::T('We apologize for any inconvenience.')}
— {Lang::T('The ')} {$companyName} {Lang::T('
+ Team.')}
+
+ {if $date}
+ {/if}
+
+
+ {if $date}
+
+ {/if}
+
+
+
\ No newline at end of file
diff --git a/ui/ui/message-bulk.tpl b/ui/ui/message-bulk.tpl
new file mode 100644
index 0000000..90e2169
--- /dev/null
+++ b/ui/ui/message-bulk.tpl
@@ -0,0 +1,144 @@
+{include file="sections/header.tpl"}
+
+
+
+
+
+ {if $batchStatus}
+
Total SMS Sent: {$totalSMSSent} Total SMS
+ Failed: {$totalSMSFailed} Total WhatsApp Sent:
+ {$totalWhatsappSent} Total WhatsApp Failed:
+ {$totalWhatsappFailed}
+ {/if}
+
+
+
+
+
+
+
+
+ Name |
+ Phone |
+ Message |
+ Status |
+
+
+
+ {foreach $batchStatus as $customer}
+
+ {$customer.name} |
+ {$customer.phone} |
+ {$customer.message} |
+ {$customer.status} |
+
+ {/foreach}
+
+
+
+
+
+
+
+
+
+
+
+
+
+{include file="sections/footer.tpl"}
\ No newline at end of file
diff --git a/ui/ui/message-list.tpl b/ui/ui/message-list.tpl
new file mode 100644
index 0000000..9439880
--- /dev/null
+++ b/ui/ui/message-list.tpl
@@ -0,0 +1,74 @@
+{include file="sections/header.tpl"}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {Lang::T('From')} |
+ {Lang::T('To')} |
+ {Lang::T('Title')} |
+ {Lang::T('Date')} |
+ {Lang::T('Status')} |
+ {Lang::T('Actions')} |
+
+
+
+ {foreach $messages as $msg}
+
+ {$msg.from_user} |
+ {$msg.to_user} |
+ {$msg.title} |
+ {Lang::dateTimeFormat($msg.date)} |
+ {if $msg.status == 0}{Lang::T('Not Sent')}{else}{Lang::T('Sent')}{/if} |
+
+ {Lang::T('View')}
+ |
+
+ {/foreach}
+
+
+
+
+
+
+
+
+
+
+
+
+{include file="sections/footer.tpl"}
diff --git a/ui/ui/message.tpl b/ui/ui/message.tpl
new file mode 100644
index 0000000..d7ced68
--- /dev/null
+++ b/ui/ui/message.tpl
@@ -0,0 +1,66 @@
+{include file="sections/header.tpl"}
+
+{include file="sections/footer.tpl"}
\ No newline at end of file