#122 fixed all kind of register and login design and links
This commit is contained in:
parent
3d1d42fda8
commit
2a794c5852
@ -16,9 +16,9 @@
|
||||
<div class="panel-body">
|
||||
<form class="textbox" style="padding:10px" id="logout_form">
|
||||
<div class="control-group">
|
||||
<div class="help-block"></div>
|
||||
<input type="hidden" />
|
||||
<button class="btn-sm btn btn-primary" style="width: 95%;" type="submit" id="logout_submit"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span> ${basic_logout}</button>
|
||||
<button class="btn-sm btn btn-primary" style="width: 100%;" type="submit" id="logout_submit"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span> ${basic_logout}</button>
|
||||
<div class="help-block"></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
<br>
|
||||
<b>Client: </b><a href="${link_wow_2_4_3}">${mojotrollz_wow_2_4_3}</a>
|
||||
</p>
|
||||
<button id="btn_beta" class="btn btn-success btn-lg" style="width: 95%;">Join the Mojotribe</button>
|
||||
<button id="btn_beta" class="btn btn-success btn-lg" style="width: 100%;">Join the Mojotribe</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel panel-default">
|
||||
@ -21,7 +21,7 @@
|
||||
<div class="controls">
|
||||
<input type="text"
|
||||
size="30"
|
||||
style="margin-bottom: 15px; width: 95%;"
|
||||
style="margin-bottom: 15px; width: 100%;"
|
||||
id="bt_login_user"
|
||||
placeholder="${basic_placeholder_username}"
|
||||
minlength="3" data-validation-minlength-message="${sai_error_username_short}"
|
||||
@ -31,15 +31,15 @@
|
||||
<div class="controls">
|
||||
<input type="password"
|
||||
size="30"
|
||||
style="margin-bottom: 15px; width: 95%;"
|
||||
style="margin-bottom: 15px; width: 100%;"
|
||||
id="bt_login_password"
|
||||
placeholder="${basic_placeholder_password}"
|
||||
minlength="5" data-validation-minlength-message="${sai_error_password_short}"
|
||||
maxlength="16" data-validation-maxlength-message="${sai_error_password_long}"
|
||||
required data-validation-required-message="${sai_error_password_miss}"/>
|
||||
</div>
|
||||
<button class="btn-sm btn btn-primary" style="width: 100%;" type="submit" id="login_submit"><span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> ${basic_login}</button>
|
||||
<div class="help-block"></div>
|
||||
<button class="btn-sm btn btn-primary" style="width: 95%;" type="submit" id="login_submit"><span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> ${basic_login}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
@ -7,8 +7,9 @@ class default_login extends \SYSTEM\PAGE\Page {
|
||||
public static function js(){
|
||||
return array(new \PPAGE('default_login/js/default_login.js'));}
|
||||
public function html(){
|
||||
$vars = \SYSTEM\PAGE\text::tag('mojotrollz');
|
||||
return \SYSTEM\SECURITY\Security::isLoggedIn() ?
|
||||
\SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_login/tpl/loggedin.tpl'))->SERVERPATH(), \SYSTEM\PAGE\text::tag('mojotrollz'))
|
||||
: \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_login/tpl/loggedout.tpl'))->SERVERPATH(), \SYSTEM\PAGE\text::tag('mojotrollz'));
|
||||
\SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_login/tpl/loggedin.tpl'))->SERVERPATH(), array_merge($vars,array('email' => \SYSTEM\SECURITY\Security::getUser()->email,'username' => \SYSTEM\SECURITY\Security::getUser()->username)))
|
||||
: \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_login/tpl/loggedout.tpl'))->SERVERPATH(), $vars);
|
||||
}
|
||||
}
|
||||
@ -1,10 +1,27 @@
|
||||
<div class="mojotrollz_col_content">
|
||||
<h2>You are logged in</h2>
|
||||
<form class="textbox" style="padding:10px" id="logout_form">
|
||||
<div class="control-group">
|
||||
<div class="help-block"></div>
|
||||
<input type="hidden" />
|
||||
<button class="btn-sm btn btn-primary" style="width: 250px;" type="submit" id="logout_submit"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span> ${basic_logout}</button>
|
||||
<div class="row-fluid">
|
||||
<br><br>
|
||||
<div class="col-md-6 col-md-offset-3">
|
||||
<div class="panel panel-success">
|
||||
<div class="panel-heading"><h4>Account</h4></div>
|
||||
<div class="panel-body">
|
||||
You are logged in as <b>${email}</b><br>
|
||||
Your Website Account-Name is: <b>${username}</b>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row-fluid">
|
||||
<div class="col-md-6 col-md-offset-3">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<form class="textbox" style="padding:10px" id="logout_form">
|
||||
<div class="control-group">
|
||||
<input type="hidden" />
|
||||
<button class="btn-sm btn btn-primary" style="width: 95%;" type="submit" id="logout_submit"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span> ${basic_logout}</button>
|
||||
<div class="help-block"></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -1,29 +1,59 @@
|
||||
<div class="mojotrollz_col_content">
|
||||
<h1>${basic_login}</h1>
|
||||
<form class="textbox" style="padding:10px" id="login_form">
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<input type="text"
|
||||
size="30"
|
||||
style="margin-bottom: 15px;"
|
||||
id="bt_login_user"
|
||||
placeholder="${basic_placeholder_username}"
|
||||
minlength="3" data-validation-minlength-message="${sai_error_username_short}"
|
||||
maxlength="16" data-validation-maxlength-message="${sai_error_username_long}"
|
||||
required data-validation-required-message="${sai_error_username_miss}"/>
|
||||
<div class="row-fluid">
|
||||
<br><br>
|
||||
<div class="col-md-6 col-md-offset-3">
|
||||
<div class="panel panel-success">
|
||||
<div class="panel-heading"><h4>Mojotrollz - Login</h4></div>
|
||||
<div class="panel-body">
|
||||
<form class="textbox" style="padding:10px" id="login_form">
|
||||
<div class="control-group">
|
||||
<table id="userLoginTable">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="width: 200px;">${basic_username}</th>
|
||||
<td>
|
||||
<div class="controls">
|
||||
<input type="text"
|
||||
size="35"
|
||||
style="margin-bottom: 15px;"
|
||||
id="bt_login_user"
|
||||
placeholder="${basic_placeholder_username}"
|
||||
minlength="3" data-validation-minlength-message="${sai_error_username_short}"
|
||||
maxlength="16" data-validation-maxlength-message="${sai_error_username_long}"
|
||||
required data-validation-required-message="${sai_error_username_miss}"/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>${basic_password}</th>
|
||||
<td>
|
||||
<div class="controls">
|
||||
<input type="password"
|
||||
size="35"
|
||||
style="margin-bottom: 15px;"
|
||||
id="bt_login_password"
|
||||
placeholder="${basic_placeholder_password}"
|
||||
minlength="5" data-validation-minlength-message="${sai_error_password_short}"
|
||||
maxlength="16" data-validation-maxlength-message="${sai_error_password_long}"
|
||||
required data-validation-required-message="${sai_error_password_miss}"/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
<p style="float: left;"><a href="#!register">Register an Account</a></p>
|
||||
</th>
|
||||
<td>
|
||||
<p style="float: right;">
|
||||
<button class="btn-sm btn btn-success" style="clear: left; height: 32px; font-size: 13px;" type="submit" id="login_submit"><span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> ${basic_login}</button>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="help-block" style="float: left; margin-top: 3px;"></p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<input type="password"
|
||||
size="30"
|
||||
style="margin-bottom: 15px;"
|
||||
id="bt_login_password"
|
||||
placeholder="${basic_placeholder_password}"
|
||||
minlength="5" data-validation-minlength-message="${sai_error_password_short}"
|
||||
maxlength="16" data-validation-maxlength-message="${sai_error_password_long}"
|
||||
required data-validation-required-message="${sai_error_password_miss}"/>
|
||||
</div>
|
||||
<div class="help-block"></div>
|
||||
<button class="btn-sm btn btn-primary" style="clear: left; height: 32px; font-size: 13px;" type="submit" id="login_submit"><span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> ${basic_login}</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@ -1,77 +1,96 @@
|
||||
<div class="row-fluid">
|
||||
<div class="col-md-12">
|
||||
<h2>Mojotrollz Beta - Register Form</h2>
|
||||
<br><br>
|
||||
<form class="textbox" id="register_user_form">
|
||||
<div class="control-group" id="register_username_control_group">
|
||||
<table id="userRegisterTable" class="">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="width: 200px;">${basic_username}</th>
|
||||
<td>
|
||||
<div class="control-group controls">
|
||||
<input type="text"
|
||||
size="30"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="register_username"
|
||||
placeholder="peter"
|
||||
minlength="3" data-validation-minlength-message="${basic_username_short}"
|
||||
required data-validation-required-message="${basic_username_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>E-Mail</th>
|
||||
<td>
|
||||
<div class="control-group controls">
|
||||
<input type="email"
|
||||
size="30"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="register_email"
|
||||
placeholder="${basic_placeholder_email}"
|
||||
data-validation-email-message="${basic_email_wrong}"
|
||||
required data-validation-required-message="${basic_email_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>${basic_password}</th>
|
||||
<td>
|
||||
<div class="control-group" id="change_user_password">
|
||||
<div class="control-group controls" style="clear: both">
|
||||
<input type="password"
|
||||
size="30"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="user_register_password1"
|
||||
name="user_register_password1"
|
||||
placeholder="${basic_placeholder_password}"
|
||||
minlength="5" data-validation-minlength-message="${basic_password_short}"
|
||||
required data-validation-required-message="${basic_password_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
<div class="control-group controls" style="clear: both">
|
||||
<input type="password"
|
||||
size="30"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="user_register_password2"
|
||||
name="user_register_password2"
|
||||
placeholder="${basic_placeholder_password}"
|
||||
data-validation-matches-match="user_register_password1"
|
||||
data-validation-matches-message="${basic_password_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<input type="hidden" name="beta_key" id="beta_key" value="${key}">
|
||||
<p class="help-block" style="float: left; margin-top: 3px;"></p>
|
||||
<button class="btn-sm btn-primary" type="submit"><i class="icon-ok icon-white"></i> ${basic_register}</button>
|
||||
<br><br>
|
||||
<div class="col-md-3"></div>
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-success">
|
||||
<div class="panel-heading"><h4>Register for the Mojotrollz Beta</h4></div>
|
||||
<div class="panel-body">
|
||||
<form class="textbox" id="register_user_form">
|
||||
<div class="control-group" id="register_username_control_group">
|
||||
<table id="userRegisterTable" class="">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="width: 200px;">${basic_username}</th>
|
||||
<td>
|
||||
<div class="control-group controls">
|
||||
<input type="text"
|
||||
size="35"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="register_username"
|
||||
placeholder="peter"
|
||||
minlength="3" data-validation-minlength-message="${basic_username_short}"
|
||||
required data-validation-required-message="${basic_username_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>E-Mail</th>
|
||||
<td>
|
||||
<div class="control-group controls">
|
||||
<input type="email"
|
||||
size="35"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="register_email"
|
||||
placeholder="${basic_placeholder_email}"
|
||||
data-validation-email-message="${basic_email_wrong}"
|
||||
required data-validation-required-message="${basic_email_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>${basic_password}</th>
|
||||
<td>
|
||||
<div class="control-group" id="user_password">
|
||||
<div class="control-group controls" style="clear: both">
|
||||
<input type="password"
|
||||
size="35"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="user_register_password1"
|
||||
name="user_register_password1"
|
||||
placeholder="${basic_placeholder_password}"
|
||||
minlength="5" data-validation-minlength-message="${basic_password_short}"
|
||||
required data-validation-required-message="${basic_password_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th></th>
|
||||
<td>
|
||||
<div class="control-group" id="user_password2">
|
||||
<div class="control-group controls" style="clear: both">
|
||||
<input type="password"
|
||||
size="35"
|
||||
style="margin-bottom: 15px; float: left;"
|
||||
id="user_register_password2"
|
||||
name="user_register_password2"
|
||||
placeholder="${basic_placeholder_password}"
|
||||
data-validation-matches-match="user_register_password1"
|
||||
data-validation-matches-message="${basic_password_miss}"/>
|
||||
<br/>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>
|
||||
<p style="float: left;"><a href="#!login">Login an existing Account</a></p>
|
||||
</th>
|
||||
<td>
|
||||
<p style="float: right; margin-top: 3px;">
|
||||
<button class="btn-lg btn-success" type="submit" style="width: 200px;"><i class="icon-ok icon-white"></i> Join the Mojotribe</button>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="help-block" style="float: left; margin-top: 3px;"></p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</form>
|
||||
<br>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -1,8 +1,13 @@
|
||||
<div class="row-fluid">
|
||||
<div class="col-md-12">
|
||||
<h2>Mojotrollz Beta - Register Form</h2>
|
||||
<p>You are logged in! No need to register another account.</p>
|
||||
<p>Visit your <a href="#!login">Account</a></p>
|
||||
<br>
|
||||
<br><br>
|
||||
<div class="col-md-3"></div>
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-success">
|
||||
<div class="panel-heading"><h4>Register for the Mojotrollz Beta</h4></div>
|
||||
<div class="panel-body">
|
||||
<p>You are logged in! No need to register another account.</p>
|
||||
<p>Visit your <a href="#!login">Account</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -11,14 +11,14 @@
|
||||
<div class="tab-pane active" id="tab_stats">
|
||||
<div id="vis_ts"></div>
|
||||
<select id="filter_vis_ts" db="${db}">
|
||||
<option value="86400">1d</option>
|
||||
<option value="86400" selected>1d</option>
|
||||
<option value="43200">12h</option>
|
||||
<option value="21600">6h</option>
|
||||
<option value="14400">4h</option>
|
||||
<option value="7200">2h</option>
|
||||
<option value="3600">1h</option>
|
||||
<option value="1800">30m</option>
|
||||
<option value="600" selected>10m</option>
|
||||
<option value="600">10m</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -55,60 +55,60 @@ REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('link_youtube', 'link');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('link_youtube', 'mojotrollz');
|
||||
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_article_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:33:13', '2016-05-28 01:33:13');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_article_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:24:27', '2016-05-28 01:24:27');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_beta_description', 'enUS', 'Mojotrollz.eu Beta - Join the Burning Crusade Experience today.', 10, 10, '2016-05-28 01:37:30', '2016-05-28 01:37:30');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_beta_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games, Beta', 10, 10, '2016-05-28 01:36:38', '2016-05-28 01:36:38');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_donate_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:34:17', '2016-05-28 01:34:17');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_donate_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:25:23', '2016-05-28 01:25:23');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_impressum_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:34:38', '2016-05-28 01:34:38');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_impressum_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:26:19', '2016-05-28 01:26:19');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_login_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:34:57', '2016-05-28 01:34:57');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_login_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:22:59', '2016-05-28 01:22:59');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_register_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:35:21', '2016-05-28 01:35:21');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_register_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:27:04', '2016-05-28 01:27:04');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_serverlist_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:35:41', '2016-05-28 01:35:41');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_serverlist_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:27:33', '2016-05-28 01:27:33');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_start_author', 'enUS', 'www.webcraft-media.de', 10, 10, '2016-05-28 01:31:53', '2016-05-28 01:31:53');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_start_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:29:31', '2016-05-28 01:29:31');
|
||||
INSERT INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_start_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:28:25', '2016-05-28 01:28:25');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_description', 'meta_article');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_keywords', 'meta_article');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_description', 'meta_beta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_keywords', 'meta_beta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_description', 'meta_donate');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_keywords', 'meta_donate');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_description', 'meta_impressum');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_keywords', 'meta_impressum');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_description', 'meta_login');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_keywords', 'meta_login');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_description', 'meta_register');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_keywords', 'meta_register');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_description', 'meta_serverlist');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_keywords', 'meta_serverlist');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_author', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_author', 'meta_start');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_author', 'mojotrollz');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_description', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_description', 'meta_start');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_description', 'mojotrollz');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_keywords', 'meta');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_keywords', 'meta_start');
|
||||
INSERT INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_keywords', 'mojotrollz');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_article_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:33:13', '2016-05-28 01:33:13');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_article_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:24:27', '2016-05-28 01:24:27');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_beta_description', 'enUS', 'Mojotrollz.eu Beta - Join the Burning Crusade Experience today.', 10, 10, '2016-05-28 01:37:30', '2016-05-28 01:37:30');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_beta_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games, Beta', 10, 10, '2016-05-28 01:36:38', '2016-05-28 01:36:38');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_donate_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:34:17', '2016-05-28 01:34:17');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_donate_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:25:23', '2016-05-28 01:25:23');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_impressum_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:34:38', '2016-05-28 01:34:38');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_impressum_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:26:19', '2016-05-28 01:26:19');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_login_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:34:57', '2016-05-28 01:34:57');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_login_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:22:59', '2016-05-28 01:22:59');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_register_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:35:21', '2016-05-28 01:35:21');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_register_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:27:04', '2016-05-28 01:27:04');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_serverlist_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:35:41', '2016-05-28 01:35:41');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_serverlist_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:27:33', '2016-05-28 01:27:33');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_start_author', 'enUS', 'www.webcraft-media.de', 10, 10, '2016-05-28 01:31:53', '2016-05-28 01:31:53');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_start_description', 'enUS', 'Mojotrollz.eu - Your Online Gaming Community. Teamspeak 3 (ts3), Download WoW 1.12.1 Classic, WoW 2.4.3 TBC, WoW 3.3.5a WOTLK, Vote for Private Servers', 10, 10, '2016-05-28 01:29:31', '2016-05-28 01:29:31');
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('meta_start_keywords', 'enUS', 'World of Warcraft, Private Server, Download WoW, Addons, Gaming Community, Online Games', 10, 10, '2016-05-28 01:28:25', '2016-05-28 01:28:25');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_description', 'meta_article');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_article_keywords', 'meta_article');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_description', 'meta_beta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_beta_keywords', 'meta_beta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_description', 'meta_donate');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_donate_keywords', 'meta_donate');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_description', 'meta_impressum');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_impressum_keywords', 'meta_impressum');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_description', 'meta_login');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_login_keywords', 'meta_login');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_description', 'meta_register');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_register_keywords', 'meta_register');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_description', 'meta_serverlist');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_serverlist_keywords', 'meta_serverlist');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_author', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_author', 'meta_start');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_author', 'mojotrollz');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_description', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_description', 'meta_start');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_description', 'mojotrollz');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_keywords', 'meta');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_keywords', 'meta_start');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('meta_start_keywords', 'mojotrollz');
|
||||
|
||||
REPLACE INTO `system_text` (`id`, `lang`, `text`, `author`, `author_edit`, `time_create`, `time_edit`) VALUES ('mojotrollz_address_server', 'enUS', 'Address of your Server', 10, 10, '2015-09-18 00:50:04', '2015-09-18 00:50:04');
|
||||
REPLACE INTO `system_text_tag` (`id`, `tag`) VALUES ('mojotrollz_address_server', 'mojotrollz');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user