diff --git a/mojotrollz/page/account_tbc/account_tbc.php b/mojotrollz/page/account_tbc/account_tbc.php
new file mode 100644
index 0000000..3d71431
--- /dev/null
+++ b/mojotrollz/page/account_tbc/account_tbc.php
@@ -0,0 +1,25 @@
+email;
+ $vars['wow_accounts'] = '';
+ $res = \SYSTEM\SECURITY\security::getUser()->email_confirmed ? \SQL\MOJO_ACCOUNT_ACCOUNTS::QQ(array($vars['email'])) : \SQL\MOJO_ACCOUNT_MAIN_ACCOUNT::QQ(array($vars['username'],$vars['email']));
+ while($row = $res->next()){
+ $row['online'] = $row['online'] == 1 ? 'online' : 'offline';
+ $vars['wow_accounts'] .= \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_account/tpl/wow_account.tpl'))->SERVERPATH(), $row);}
+ $vars['wow_accounts_confirm'] = \SYSTEM\SECURITY\security::getUser()->email_confirmed ? '' : \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_account/tpl/wow_accounts_confirm.tpl'))->SERVERPATH());
+ return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('account_tbc/tpl/account_tbc.tpl'))->SERVERPATH(), $vars);
+ }
+
+ public static function css() {return array();}
+}
\ No newline at end of file
diff --git a/mojotrollz/page/account_tbc/autoload.inc b/mojotrollz/page/account_tbc/autoload.inc
new file mode 100644
index 0000000..a05a7ef
--- /dev/null
+++ b/mojotrollz/page/account_tbc/autoload.inc
@@ -0,0 +1,3 @@
+
+
+
+
Username
+
Chars
+
Online
+
+ ${wow_accounts}
+ ${wow_accounts_confirm}
+
+
\ No newline at end of file
diff --git a/mojotrollz/page/account_website/account_website.php b/mojotrollz/page/account_website/account_website.php
new file mode 100644
index 0000000..d80f55d
--- /dev/null
+++ b/mojotrollz/page/account_website/account_website.php
@@ -0,0 +1,22 @@
+email;
+ $vars['username'] = \SYSTEM\SECURITY\security::getUser()->username;
+ $vars['option_confirm_email'] = \SYSTEM\SECURITY\security::getUser()->email_confirmed ? '' : \SYSTEM\PAGE\replace::replaceFile((new PPAGE('account_website/tpl/option_confirm_email.tpl'))->SERVERPATH(),$vars);
+
+ return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('account_website/tpl/account_website.tpl'))->SERVERPATH(), $vars);
+ }
+
+ public static function css() {return array();}
+}
\ No newline at end of file
diff --git a/mojotrollz/page/account_website/autoload.inc b/mojotrollz/page/account_website/autoload.inc
new file mode 100644
index 0000000..a05a7ef
--- /dev/null
+++ b/mojotrollz/page/account_website/autoload.inc
@@ -0,0 +1,3 @@
+
+
-
-
+
+
+
Account
- You are logged in as ${email}
- Your Website Account-Name is: ${username}
- ${option_confirm_email}
-
-
-
-
-
-
-
-
WoW Account
-
-
-
Username
-
Chars
-
Online
-
- ${wow_accounts}
- ${wow_accounts_confirm}
-
-
-
-
-
\ No newline at end of file
diff --git a/mojotrollz/page/page_mojotrollz.php b/mojotrollz/page/page_mojotrollz.php
index 17d533d..3f03f8a 100644
--- a/mojotrollz/page/page_mojotrollz.php
+++ b/mojotrollz/page/page_mojotrollz.php
@@ -33,4 +33,10 @@ class page_mojotrollz extends \SYSTEM\API\api_default {
public static function page_register(){
return (new default_register())->html();}
+
+ public static function page_account_website(){
+ return (new account_website())->html();}
+
+ public static function page_account_tbc(){
+ return (new account_tbc())->html();}
}
\ No newline at end of file