From 4ea01347b23baca4d5ac4311c1b5f6d2815dcb3c Mon Sep 17 00:00:00 2001 From: nestict Date: Sat, 24 May 2025 12:21:18 +0200 Subject: [PATCH] Upload files to "ui/ui" Signed-off-by: nestict --- ui/ui/recharge-confirm.tpl | 96 +++++++++++++++++++ ui/ui/recharge.tpl | 73 +++++++++++++++ ui/ui/refill.tpl | 40 ++++++++ ui/ui/register-otp.tpl | 183 +++++++++++++++++++++++++++++++++++++ ui/ui/register.tpl | 178 ++++++++++++++++++++++++++++++++++++ 5 files changed, 570 insertions(+) create mode 100644 ui/ui/recharge-confirm.tpl create mode 100644 ui/ui/recharge.tpl create mode 100644 ui/ui/refill.tpl create mode 100644 ui/ui/register-otp.tpl create mode 100644 ui/ui/register.tpl diff --git a/ui/ui/recharge-confirm.tpl b/ui/ui/recharge-confirm.tpl new file mode 100644 index 0000000..2280e05 --- /dev/null +++ b/ui/ui/recharge-confirm.tpl @@ -0,0 +1,96 @@ +{include file="sections/header.tpl"} +
+
+
+
+
+

{Lang::T('Confirm')}

+
+
{Lang::T('Customer')}
+
    +
  • + {Lang::T('Username')} {$cust['username']} +
  • +
  • + {Lang::T('Name')} {$cust['fullname']} +
  • +
  • + {Lang::T('Phone Number')} {$cust['phonenumber']} +
  • +
  • + {Lang::T('Email')} {$cust['email']} +
  • +
  • + {Lang::T('Address')} {$cust['address']} +
  • +
  • + {Lang::T('Balance')} {Lang::moneyFormat($cust['balance'])} +
  • +
+
{Lang::T('Plan')}
+
    +
  • + {Lang::T('Plan Name')} {$plan['name_plan']} +
  • +
  • + {Lang::T('Location')} {if $plan['is_radius']}Radius{else}{$plan['routers']}{/if} +
  • +
  • + {Lang::T('Type')} {if $plan['prepaid'] eq 'yes'}Prepaid{else}Postpaid{/if} + {$plan['type']} +
  • +
  • + {Lang::T('Plan Price')} {if $using eq 'zero'}{Lang::moneyFormat(0)}{else}{Lang::moneyFormat($plan['price'])}{/if} +
  • +
  • + {Lang::T('Plan Validity')} {$plan['validity']} + {$plan['validity_unit']} +
  • +
  • + {Lang::T('Using')} {ucwords($using)} +
  • +
+
{Lang::T('Total')}
+
    + {if $using neq 'zero' and $add_cost>0} + {foreach $bills as $k => $v} +
  • + {$k} {Lang::moneyFormat($v)} +
  • + {/foreach} +
  • + {Lang::T('Additional Cost')} {Lang::moneyFormat($add_cost)} +
  • +
  • + {Lang::T('Total')} ({Lang::T('Plan Price')} +{Lang::T('Additional Cost')}){Lang::moneyFormat($plan['price']+$add_cost)} +
  • + {else} +
  • + {Lang::T('Total')} {if $using eq 'zero'}{Lang::moneyFormat(0)}{else}{Lang::moneyFormat($plan['price'])}{/if} +
  • + {/if} +
+
+ + + + + +
+
+ {Lang::T('Cancel')} +
+
+
+
+
+
+
+{include file="sections/footer.tpl"} \ No newline at end of file diff --git a/ui/ui/recharge.tpl b/ui/ui/recharge.tpl new file mode 100644 index 0000000..b312a8b --- /dev/null +++ b/ui/ui/recharge.tpl @@ -0,0 +1,73 @@ +{include file="sections/header.tpl"} +
+
+
+
+
+

{Lang::T('Recharge Account')}

+
+
+
+ +
+ +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+

Postpaid Recharge for the first time use {$_c['currency_code']} 0

+
+
+
+
+ + Or {Lang::T('Cancel')} +
+
+
+
+
+
+
+
+
+{include file="sections/footer.tpl"} \ No newline at end of file diff --git a/ui/ui/refill.tpl b/ui/ui/refill.tpl new file mode 100644 index 0000000..441acc0 --- /dev/null +++ b/ui/ui/refill.tpl @@ -0,0 +1,40 @@ +{include file="sections/header.tpl"} +
+
+
+
+
+

{Lang::T('Refill Account')}

+
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ + Or {Lang::T('Cancel')} +
+
+
+
+
+
+
+
+
+{include file="sections/footer.tpl"} \ No newline at end of file diff --git a/ui/ui/register-otp.tpl b/ui/ui/register-otp.tpl new file mode 100644 index 0000000..db9ea0d --- /dev/null +++ b/ui/ui/register-otp.tpl @@ -0,0 +1,183 @@ + + + + + + + + {Lang::T('Login')} - {$_c['CompanyName']} + + + + + + + + + + +
+ +
+

{$_c['CompanyName']}

+
+
+ {if isset($notify)} + + {/if} +
+
+
{Lang::T('Registration Info')}
+
+ {include file="$_path/../pages/Registration_Info.html"} +
+
+
+
+
+
+
+
1. {Lang::T('Register as Member')}
+
+
+
+ +
+ {if $_c['country_code_phone']!= ''} + + {else} + + {/if} + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+
+
2. {Lang::T('Password')}
+
+
+
+ + +
+
+ + +
+
+
+ +
+ +
+
+
+ Privacy + • + T & C +
+
+
+
+
+
+
+
+ + + + {if $_c['tawkto'] != ''} + + + + {/if} + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ui/ui/register.tpl b/ui/ui/register.tpl new file mode 100644 index 0000000..efa66f0 --- /dev/null +++ b/ui/ui/register.tpl @@ -0,0 +1,178 @@ + + + + + + + + {Lang::T('Login')} - {$_c['CompanyName']} + + + + + + + + + + +
+ +
+

{$_c['CompanyName']}

+
+
+ {if isset($notify)} + + {/if} +
+
+
{Lang::T('Registration Info')}
+
+ {include file="$_path/../pages/Registration_Info.html"} +
+
+
+
+
+
+
+
1. {Lang::T('Register as Member')}
+
+
+
+ +
+ {if $_c['country_code_phone']!= ''} + + {else} + + {/if} + +
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+
+
2. {Lang::T('Password')}
+
+
+
+ + +
+
+ + +
+
+
+ +
+ +
+
+
+
+ Privacy + • + T & C +
+
+
+
+
+
+
+
+ + + {if $_c['tawkto'] != ''} + + + + {/if} + + + + + + + + + + + + + + + + + + + \ No newline at end of file