diff --git a/admin/template/style.css b/admin/template/style.css index 9001a1ab..d77e8acb 100644 --- a/admin/template/style.css +++ b/admin/template/style.css @@ -28,7 +28,7 @@ h1, h2, h3, h4, h5, h6 {color: #313334; font-weight: bold;} margin-left:5px; } -.button { background:#eee url(images/button.gif) repeat-x 0 0; border:solid 1px #b1a874; color:#7f7f7f; font-size:11px; padding:2px 6px 2px 6px; cursor:pointer; line-height:14px !important; } +.button { background:#eee repeat-x 0 0; border:solid 1px #b1a874; color:#7f7f7f; font-size:11px; padding:2px 6px 2px 6px; cursor:pointer; line-height:14px !important; } .button:hover { color:#333; border-color:#857b42; } .field, .button { -moz-border-radius:4px; -webkit-border-radius:4px; } @@ -126,7 +126,7 @@ a.ico:hover { color:#333;} font-size: 12px; } #status .success { - margin: 0px: + margin: 0px; } #version { position: absolute; top: 10px; right: 10px; diff --git a/system/pages/account/change_email.php b/system/pages/account/change_email.php index 8b26c8ad..519059ed 100644 --- a/system/pages/account/change_email.php +++ b/system/pages/account/change_email.php @@ -87,19 +87,18 @@ else  
- +
- + ' . $twig->render('buttons.cancel.html.twig') . '
-
-
+ ' . $twig->render('buttons.back.html.twig') . '
  @@ -123,8 +122,7 @@ else -
-
+ ' . $twig->render('buttons.cancel.html.twig') . ' @@ -135,8 +133,7 @@ else
-
-
+ ' . $twig->render('buttons.back.html.twig') . '
@@ -155,7 +152,7 @@ if(isset($_POST['emailchangecancel']) && $_POST['emailchangecancel'] == 1) { $account_logged->setCustomField("email_new", ""); $account_logged->setCustomField("email_new_time", 0); - $custom_buttons = '
'; + $custom_buttons = '
' . $twig->render('buttons.back.html.twig') . '
'; echo $twig->render('success.html.twig', array( 'title' => 'Email Address Change Cancelled', diff --git a/system/pages/creatures.php b/system/pages/creatures.php index d275d819..61131a92 100644 --- a/system/pages/creatures.php +++ b/system/pages/creatures.php @@ -250,5 +250,5 @@ else echo 'Monster with name '.$monster_name.' doesn\'t exist.'; } //back button -echo '

'; +echo $twig->render('creatures.back_button.html.twig'); ?> diff --git a/system/pages/guilds/accept_invite.php b/system/pages/guilds/accept_invite.php index 97ed5cd6..7b3df1ff 100644 --- a/system/pages/guilds/accept_invite.php +++ b/system/pages/guilds/accept_invite.php @@ -90,31 +90,35 @@ else } if(!$acc_invited) { - $errors[] = 'Any character from your account isn\'t invited to '.$guild->getName().'.'; + $errors[] = "Any character from your account isn't invited to " . $guild->getName() . "."; } } if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo ' -
'; + + echo $twig->render('guilds.back_button.html.twig', array( + 'action' => getLink('guilds') . '/' . $guild_name + )); } else { if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') { $guild->acceptInvite($player); - echo '
Accept invitation
Player with name '.$player->getName().' has been added to guild '.$guild->getName().'.

'; + echo $twig->render('success.html.twig', array( + 'title' => 'Accept invitation', + 'description' => 'Player with name '.$player->getName().' has been added to guild '.$guild->getName() . '.', + 'custom_buttons' => $twig->render('guilds.back_button.html.twig', array( + 'action' => getLink('guilds') . '/' . $guild_name + )) + )); } else { - echo ''; - echo ''; - echo '
Accept invitation
Select character to join guild:
-
'; sort($list_of_invited_players); - $i = 0; - foreach($list_of_invited_players as $invited_player_from_list) { - echo '
'; - } - echo '

'; + + echo $twig->render('guilds.accept_invite.html.twig', array( + 'guild_name' => $guild_name, + 'invited_players' => $list_of_invited_players + )); } } diff --git a/system/pages/guilds/add_rank.php b/system/pages/guilds/add_rank.php index 4ce504d4..cf14acad 100644 --- a/system/pages/guilds/add_rank.php +++ b/system/pages/guilds/add_rank.php @@ -57,7 +57,10 @@ if(empty($guild_errors)) { if(!empty($guild_errors)) { echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => '?subtopic=guilds&guild='.$guild_name.'&action=show' + )); } } else @@ -65,7 +68,9 @@ else if(!empty($guild_errors)) { echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true + )); } } diff --git a/system/pages/guilds/change_description.php b/system/pages/guilds/change_description.php index 042d14c6..3aa49a4f 100644 --- a/system/pages/guilds/change_description.php +++ b/system/pages/guilds/change_description.php @@ -67,7 +67,10 @@ if(empty($errors)) { if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => '?subtopic=guilds' + )); } ?> \ No newline at end of file diff --git a/system/pages/guilds/change_logo.php b/system/pages/guilds/change_logo.php index 69f4d106..db367362 100644 --- a/system/pages/guilds/change_logo.php +++ b/system/pages/guilds/change_logo.php @@ -118,6 +118,9 @@ if(empty($errors)) { if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => '?subtopic=guilds' + )); } ?> \ No newline at end of file diff --git a/system/pages/guilds/change_motd.php b/system/pages/guilds/change_motd.php index 848aa205..9f7d15e6 100644 --- a/system/pages/guilds/change_motd.php +++ b/system/pages/guilds/change_motd.php @@ -69,7 +69,10 @@ if(empty($errors)) { if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => '?subtopic=guilds' + )); } ?> \ No newline at end of file diff --git a/system/pages/guilds/change_rank.php b/system/pages/guilds/change_rank.php index c996df56..bf0254da 100644 --- a/system/pages/guilds/change_rank.php +++ b/system/pages/guilds/change_rank.php @@ -13,189 +13,192 @@ defined('MYAAC') or die('Direct access not allowed!'); $guild_name = $_REQUEST['guild']; if(!Validator::guildName($guild_name)) - $guild_errors[] = Validator::getLastError(); + $errors[] = Validator::getLastError(); if(!$logged) - $guild_errors[] = 'You are not logged in. You can\'t change rank.'; -if(empty($guild_errors)) + $errors[] = 'You are not logged in. You can\'t change rank.'; +if(empty($errors)) { $guild = $ots->createObject('Guild'); $guild->find($guild_name); if(!$guild->isLoaded()) - $guild_errors[] = 'Guild with name ' . $guild_name . ' doesn\'t exist.'; + $errors[] = 'Guild with name ' . $guild_name . ' doesn\'t exist.'; } -if(!empty($guild_errors)) +if(!empty($errors)) { - echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo ' -
'; + echo $twig->render('error_box.html.twig', array('errors' => $errors)); + echo $twig->render('guilds.back_button.html.twig'); + + return; } -else + +//check is it vice or/and leader account (leader has vice + leader rights) +$rank_list = $guild->getGuildRanksList(); +$rank_list->orderBy('level', POT::ORDER_DESC); +$guild_leader = false; +$guild_vice = false; +$account_players = $account_logged->getPlayers(); +foreach($account_players as $player) { - //check is it vice or/and leader account (leader has vice + leader rights) - $rank_list = $guild->getGuildRanksList(); - $rank_list->orderBy('level', POT::ORDER_DESC); - $guild_leader = false; - $guild_vice = false; - $account_players = $account_logged->getPlayers(); - foreach($account_players as $player) - { - $player_rank = $player->getRank(); - if($player_rank->isLoaded()) { - foreach($rank_list as $rank_in_guild) + $player_rank = $player->getRank(); + if($player_rank->isLoaded()) { + foreach($rank_list as $rank_in_guild) + { + if($rank_in_guild->getId() == $player_rank->getId()) { - if($rank_in_guild->getId() == $player_rank->getId()) + $players_from_account_in_guild[] = $player->getName(); + if($player_rank->getLevel() > 1) { + $guild_vice = true; + $level_in_guild = $player_rank->getLevel(); + } + if($guild->getOwner()->getId() == $player->getId()) { + $guild_vice = true; + $guild_leader = true; + } + } + } + } +} + +if($guild_vice) +{ + $rid = 0; + $sid = 0; + foreach($rank_list as $rank) + { + if($guild_leader || $rank->getLevel() < $level_in_guild) + { + $ranks[$rid]['0'] = $rank->getId(); + $ranks[$rid]['1'] = $rank->getName(); + $rid++; + + if(fieldExist('rank_id', 'players')) + $players_with_rank = $db->query('SELECT `id`, `rank_id` FROM `players` WHERE `rank_id` = ' . $rank->getId() . ' AND `deleted` = 0;'); + else + $players_with_rank = $db->query('SELECT `players`.`id` as `id`, `' . GUILD_MEMBERS_TABLE . '`.`rank_id` as `rank_id` FROM `players`, `' . GUILD_MEMBERS_TABLE . '` WHERE `' . GUILD_MEMBERS_TABLE . '`.`rank_id` = ' . $rank->getId() . ' AND `players`.`id` = `' . GUILD_MEMBERS_TABLE . '`.`player_id` ORDER BY `name`;'); + + $players_with_rank_number = $players_with_rank->rowCount(); + if(count($players_with_rank) > 0) + { + + foreach($players_with_rank as $result) { - $players_from_account_in_guild[] = $player->getName(); - if($player_rank->getLevel() > 1) { - $guild_vice = true; - $level_in_guild = $player_rank->getLevel(); - } - if($guild->getOwner()->getId() == $player->getId()) { - $guild_vice = true; - $guild_leader = true; + $player = new OTS_Player(); + $player->load($result['id']); + if(!$player->isLoaded()) + continue; + + if($guild->getOwner()->getId() != $player->getId() || $guild_leader) + { + $players_with_lower_rank[$sid][0] = $player->getName(); + $players_with_lower_rank[$sid][1] = $player->getName().' ('.$rank->getName().')'; + $sid++; } } } } } - //tworzenie listy osob z nizszymi uprawnieniami i rank z nizszym levelem - if($guild_vice) + if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') { - $rid = 0; - $sid = 0; - foreach($rank_list as $rank) + $player_name = stripslashes($_REQUEST['name']); + $new_rank = (int) $_REQUEST['rankid']; + if(!Validator::characterName($player_name)) + $change_errors[] = 'Invalid player name format.'; + $rank = $ots->createObject('GuildRank'); + $rank->load($new_rank); + if(!$rank->isLoaded()) + $change_errors[] = 'Rank with this ID doesn\'t exist.'; + if($level_in_guild <= $rank->getLevel() && !$guild_leader) + $change_errors[] = 'You can\'t set ranks with equal or higher level than your.'; + if(empty($change_errors)) { - if($guild_leader || $rank->getLevel() < $level_in_guild) + $player_to_change = $ots->createObject('Player'); + $player_to_change->find($player_name); + if(!$player_to_change->isLoaded()) + $change_errors[] = 'Player with name '.$player_name.' doesn\'t exist.'; + else { - $ranks[$rid]['0'] = $rank->getId(); - $ranks[$rid]['1'] = $rank->getName(); - $rid++; - - if(fieldExist('rank_id', 'players')) - $players_with_rank = $db->query('SELECT `id`, `rank_id` FROM `players` WHERE `rank_id` = ' . $rank->getId() . ' AND `deleted` = 0;'); - else - $players_with_rank = $db->query('SELECT `players`.`id` as `id`, `' . GUILD_MEMBERS_TABLE . '`.`rank_id` as `rank_id` FROM `players`, `' . GUILD_MEMBERS_TABLE . '` WHERE `' . GUILD_MEMBERS_TABLE . '`.`rank_id` = ' . $rank->getId() . ' AND `players`.`id` = `' . GUILD_MEMBERS_TABLE . '`.`player_id` ORDER BY `name`;'); - - $players_with_rank_number = $players_with_rank->rowCount(); - if(count($players_with_rank) > 0) + $player_in_guild = false; + if($guild->getName() == $player_to_change->getRank()->getGuild()->getName() || $guild_leader) { - - foreach($players_with_rank as $result) - { - $player = $ots->createObject('Player'); - $player->load($result['id']); - if(!$player->isLoaded()) - continue; - - if($guild->getOwner()->getId() != $player->getId() || $guild_leader) - { - $players_with_lower_rank[$sid]['0'] = $player->getName(); - $players_with_lower_rank[$sid]['1'] = $player->getName().' ('.$rank->getName().')'; - $sid++; - } - } + $player_in_guild = true; + $player_has_lower_rank = false; + if($player_to_change->getRank()->getLevel() < $level_in_guild || $guild_leader) + $player_has_lower_rank = true; } } + $rank_in_guild = false; + foreach($rank_list as $rank_from_guild) + if($rank_from_guild->getId() == $rank->getId()) + $rank_in_guild = true; + if(!$player_in_guild) + $change_errors[] = 'This player isn\'t in your guild.'; + if(!$rank_in_guild) + $change_errors[] = 'This rank isn\'t in your guild.'; + if(!$player_has_lower_rank) + $change_errors[] = 'This player has higher rank in guild than you. You can\'t change his/her rank.'; } - if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') + if(empty($change_errors)) { - $player_name = stripslashes($_REQUEST['name']); - $new_rank = (int) $_REQUEST['rankid']; - if(!Validator::characterName($player_name)) - $change_errors[] = 'Invalid player name format.'; - $rank = $ots->createObject('GuildRank'); - $rank->load($new_rank); - if(!$rank->isLoaded()) - $change_errors[] = 'Rank with this ID doesn\'t exist.'; - if($level_in_guild <= $rank->getLevel() && !$guild_leader) - $change_errors[] = 'You can\'t set ranks with equal or higher level than your.'; - if(empty($change_errors)) + $player_to_change->setRank($rank); + echo $twig->render('success.html.twig', array( + 'title' => 'Rank Changed', + 'description' => 'Rank of player '.$player_to_change->getName().' has been changed to '.$rank->getName().'.', + 'custom_buttons' => '' + )); + + unset($players_with_lower_rank); + unset($ranks); + $rid = 0; + $sid= 0; + foreach($rank_list as $rank) { - $player_to_change = $ots->createObject('Player'); - $player_to_change->find($player_name); - if(!$player_to_change->isLoaded()) - $change_errors[] = 'Player with name '.$player_name.' doesn\'t exist.'; - else + if($guild_leader || $rank->getLevel() < $level_in_guild) { - $player_in_guild = false; - if($guild->getName() == $player_to_change->getRank()->getGuild()->getName() || $guild_leader) + $ranks[$rid]['0'] = $rank->getId(); + $ranks[$rid]['1'] = $rank->getName(); + $rid++; + + if(fieldExist('rank_id', 'players')) + $players_with_rank = $db->query('SELECT `id`, `rank_id` FROM `players` WHERE `rank_id` = ' . $rank->getId() . ' AND `deleted` = 0;'); + else + $players_with_rank = $db->query('SELECT `players`.`id` as `id`, `' . GUILD_MEMBERS_TABLE . '`.`rank_id` as `rank_id` FROM `players`, `' . GUILD_MEMBERS_TABLE . '` WHERE `' . GUILD_MEMBERS_TABLE . '`.`rank_id` = ' . $rank->getId() . ' AND `players`.`id` = `' . GUILD_MEMBERS_TABLE . '`.`player_id` ORDER BY `name`;'); + + $players_with_rank_number = $players_with_rank->rowCount(); + if(count($players_with_rank) > 0) { - $player_in_guild = true; - $player_has_lower_rank = false; - if($player_to_change->getRank()->getLevel() < $level_in_guild || $guild_leader) - $player_has_lower_rank = true; - } - } - $rank_in_guild = false; - foreach($rank_list as $rank_from_guild) - if($rank_from_guild->getId() == $rank->getId()) - $rank_in_guild = true; - if(!$player_in_guild) - $change_errors[] = 'This player isn\'t in your guild.'; - if(!$rank_in_guild) - $change_errors[] = 'This rank isn\'t in your guild.'; - if(!$player_has_lower_rank) - $change_errors[] = 'This player has higher rank in guild than you. You can\'t change his/her rank.'; - } - if(empty($change_errors)) - { - $player_to_change->setRank($rank); - echo '
Guild Deleted
Rank of player '.$player_to_change->getName().' has been changed to '.$rank->getName().'.

'; - unset($players_with_lower_rank); - unset($ranks); - $rid = 0; - $sid= 0; - foreach($rank_list as $rank) - { - if($guild_leader || $rank->getLevel() < $level_in_guild) - { - $ranks[$rid]['0'] = $rank->getId(); - $ranks[$rid]['1'] = $rank->getName(); - $rid++; - - if(fieldExist('rank_id', 'players')) - $players_with_rank = $db->query('SELECT `id`, `rank_id` FROM `players` WHERE `rank_id` = ' . $rank->getId() . ' AND `deleted` = 0;'); - else - $players_with_rank = $db->query('SELECT `players`.`id` as `id`, `' . GUILD_MEMBERS_TABLE . '`.`rank_id` as `rank_id` FROM `players`, `' . GUILD_MEMBERS_TABLE . '` WHERE `' . GUILD_MEMBERS_TABLE . '`.`rank_id` = ' . $rank->getId() . ' AND `players`.`id` = `' . GUILD_MEMBERS_TABLE . '`.`player_id` ORDER BY `name`;'); - - $players_with_rank_number = $players_with_rank->rowCount(); - if(count($players_with_rank) > 0) + foreach($players_with_rank as $result) { - foreach($players_with_rank as $result) + $player = $ots->createObject('Player'); + $player->load($result['id']); + if(!$player->isLoaded()) + continue; + + if($guild->getOwner()->getId() != $player->getId() || $guild_leader) { - $player = $ots->createObject('Player'); - $player->load($result['id']); - if(!$player->isLoaded()) - continue; - - if($guild->getOwner()->getId() != $player->getId() || $guild_leader) - { - $players_with_lower_rank[$sid]['0'] = $player->getName(); - $players_with_lower_rank[$sid]['1'] = $player->getName().' ('.$rank->getName().')'; - $sid++; - } + $players_with_lower_rank[$sid][0] = $player->getName(); + $players_with_lower_rank[$sid][1] = $player->getName().' ('.$rank->getName().')'; + $sid++; } } } } } - else - { - echo $twig->render('error_box.html.twig', array('errors' => $change_errors)); - } } - echo '
- - - -
Change Rank
Name:  Rank:    
'; + else + { + echo $twig->render('error_box.html.twig', array('errors' => $change_errors)); + } } - else - echo 'Error. You are not a leader or vice leader in guild '.$guild->getName().'.
'; + echo $twig->render('guilds.change_rank.html.twig', array( + 'players' => $players_with_lower_rank, + 'guild_name' => $guild->getName(), + 'ranks' => $ranks + )); +} +else { + echo 'Error. You are not a leader or vice leader in guild ' . $guild->getName(); + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => getLink('guilds') . '/' . $guild->getName() + )); } \ No newline at end of file diff --git a/system/pages/guilds/cleanup_guilds.php b/system/pages/guilds/cleanup_guilds.php index 2e3cc4a5..12679791 100644 --- a/system/pages/guilds/cleanup_guilds.php +++ b/system/pages/guilds/cleanup_guilds.php @@ -61,5 +61,6 @@ if($logged) } else echo "You are not logged in."; -echo "

BACK

"; + +echo $twig->render('guilds.back_button.html.twig'); ?> \ No newline at end of file diff --git a/system/pages/guilds/cleanup_players.php b/system/pages/guilds/cleanup_players.php index 6fe2085d..6d50bff2 100644 --- a/system/pages/guilds/cleanup_players.php +++ b/system/pages/guilds/cleanup_players.php @@ -63,5 +63,6 @@ if($logged) } else echo "You are not logged in."; -echo "

BACK

"; + +echo $twig->render('guilds.back_button.html.twig'); ?> \ No newline at end of file diff --git a/system/pages/guilds/create_guild.php b/system/pages/guilds/create_guild.php index f9e44c29..c9d77ba7 100644 --- a/system/pages/guilds/create_guild.php +++ b/system/pages/guilds/create_guild.php @@ -116,10 +116,9 @@ if(isset($todo) && $todo == 'save') $player->setRank($rank); } } - echo $twig->render('success.html.twig', array( - 'title' => 'Created guild', - 'description' => 'Congratulations!
You have created guild ' . $guild_name . '. '.$player->getName().' is leader of this guild. Now you can invite players, change picture, description' . (MOTD_EXISTS ? ' and motd' : '') . ' of guild. Press submit to open guild manager.', - 'custom_buttons' => '
' + echo $twig->render('guilds.create_guild.success.html.twig', array( + 'guild_name' => $guild_name, + 'leader_name' => $player->getName() )); /*$db->query('INSERT INTO `guild_ranks` (`id`, `guild_id`, `name`, `level`) VALUES (null, '.$new_guild->getId().', "the Leader", 3)'); diff --git a/system/pages/guilds/delete_by_admin.php b/system/pages/guilds/delete_by_admin.php index a59e2bba..e0bddf6c 100644 --- a/system/pages/guilds/delete_by_admin.php +++ b/system/pages/guilds/delete_by_admin.php @@ -37,15 +37,15 @@ if(empty($errors)) { echo $twig->render('success.html.twig', array( 'title' => 'Guild Deleted', 'description' => 'Guild with name ' . $guild_name . ' has been deleted.', - 'custom_buttons' => '
' + 'custom_buttons' => $twig->render('guilds.back_button.html.twig') )); } else { echo $twig->render('success.html.twig', array( 'title' => 'Delete Guild', - 'description' => 'Are you sure you want delete guild ' . $guild_name . '?
+ 'description' => 'Are you sure you want delete guild ' . $guild_name . '?
', - 'custom_buttons' => '
' + 'custom_buttons' => $twig->render('guilds.back_button.html.twig') )); } } @@ -60,7 +60,10 @@ if(empty($errors)) { if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => '?subtopic=guilds' + )); } ?> \ No newline at end of file diff --git a/system/pages/guilds/delete_guild.php b/system/pages/guilds/delete_guild.php index 0d37571b..7feb9614 100644 --- a/system/pages/guilds/delete_guild.php +++ b/system/pages/guilds/delete_guild.php @@ -52,7 +52,7 @@ if(empty($errors)) { echo $twig->render('success.html.twig', array( 'title' => 'Guild Deleted', 'description' => 'Guild with name '.$guild_name.' has been deleted.', - 'custom_buttons' => '
' + 'custom_buttons' => $twig->render('guilds.back_button.html.twig') )); } else { @@ -73,7 +73,9 @@ if(empty($errors)) { if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true + )); } ?> \ No newline at end of file diff --git a/system/pages/guilds/delete_invite.php b/system/pages/guilds/delete_invite.php index 1b6d6230..953e235b 100644 --- a/system/pages/guilds/delete_invite.php +++ b/system/pages/guilds/delete_invite.php @@ -18,7 +18,7 @@ if(!$logged) $guild_errors[] = 'You are not logged in. You can\'t delete invitations.'; if(!Validator::guildName($guild_name)) $guild_errors[] = Validator::getLastError(); -if(!Validator($name)) +if(!Validator::characterName($name)) $guild_errors[] = 'Invalid name format.'; if(empty($guild_errors)) { @@ -88,16 +88,24 @@ if(empty($guild_errors)) if(!empty($guild_errors)) { echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo ' -
'; + + echo $twig->render('guilds.back_button.html.twig', array('action' => '?subtopic=guilds&action=show&guild=' . $guild_name)); } else { if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') { $guild->deleteInvite($player); - echo '
Delete player invitation
Player with name '.$player->getName().' has been deleted from "invites list".

'; + echo $twig->render('success.html.twig', array( + 'title' => 'Deleted player invitation', + 'description' => 'Player with name ' . $player->getName() . ' has been deleted from invites list.', + 'custom_buttons' => $twig->render('guilds.back_button.html.twig', array('action' => '?subtopic=guilds&action=show&guild=' . $guild_name)) + )); + } + else { + echo $twig->render('guilds.delete_invite.html.twig', array( + 'player_name' => $player->getName(), + 'guild_name' => $guild->getName() + )); } - else - echo '
Delete player invitation
Are you sure you want to delete player with name '.$player->getName().' from "invites list"?

  
  
'; } \ No newline at end of file diff --git a/system/pages/guilds/delete_rank.php b/system/pages/guilds/delete_rank.php index 2ebbe697..8ac9115f 100644 --- a/system/pages/guilds/delete_rank.php +++ b/system/pages/guilds/delete_rank.php @@ -87,12 +87,19 @@ if(empty($guild_errors)) { } } if($saved) { - echo '
Rank Deleted
Rank '.$rank->getName().' has been deleted. Players with this rank has now other rank.
'; + echo $twig->render('success.html.twig', array( + 'title' => 'Rank Deleted', + 'description' => 'Rank '.$rank->getName().' has been deleted. Players with this rank has now other rank.', + 'custom_buttons' => '' + )); } else { echo $twig->render('error_box.html.twig', array('errors' => $guild_errors2)); } -//back button - echo '
'; + + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => '?subtopic=guilds&guild='.$guild->getName().'&action=manager' + )); } else { @@ -107,7 +114,10 @@ if(empty($guild_errors)) { if(!empty($guild_errors)) { echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo '
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'new_line' => true, + 'action' => '?subtopic=guilds' + )); } ?> \ No newline at end of file diff --git a/system/pages/guilds/invite.php b/system/pages/guilds/invite.php index 0c01955a..82f04151 100644 --- a/system/pages/guilds/invite.php +++ b/system/pages/guilds/invite.php @@ -15,22 +15,22 @@ defined('MYAAC') or die('Direct access not allowed!'); $guild_name = isset($_REQUEST['guild']) ? $_REQUEST['guild'] : NULL; $name = isset($_REQUEST['name']) ? stripslashes($_REQUEST['name']) : NULL; if(!$logged) { - $guild_errors[] = 'You are not logged in. You can\'t invite players.'; + $errors[] = "You are not logged in. You can't invite players."; } if(!Validator::guildName($guild_name)) { - $guild_errors[] = Validator::getLastError(); + $errors[] = Validator::getLastError(); } -if(empty($guild_errors)) { +if(empty($errors)) { $guild = $ots->createObject('Guild'); $guild->find($guild_name); if(!$guild->isLoaded()) { - $guild_errors[] = 'Guild with name '.$guild_name.' doesn\'t exist.'; + $errors[] = 'Guild with name '.$guild_name.' doesn\'t exist.'; } } -if(empty($guild_errors)) { +if(empty($errors)) { $rank_list = $guild->getGuildRanksList(); $rank_list->orderBy('level', POT::ORDER_DESC); $guild_leader = false; @@ -58,53 +58,69 @@ if(empty($guild_errors)) { } if(!$guild_vice) { - $guild_errors[] = 'You are not a leader or vice leader of guild '.$guild_name.'.'.$level_in_guild; + $errors[] = 'You are not a leader or vice leader of guild '.$guild_name.'.'.$level_in_guild; } if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') { if(!Validator::characterName($name)) { - $guild_errors[] = 'Invalid name format.'; + $errors[] = 'Invalid name format.'; } - if(empty($guild_errors)) { + if(empty($errors)) { $player = new OTS_Player(); $player->find($name); if(!$player->isLoaded()) { - $guild_errors[] = 'Player with name ' . $name . ' doesn\'t exist.'; + $errors[] = 'Player with name ' . $name . ' doesn\'t exist.'; } else { $rank_of_player = $player->getRank(); if($rank_of_player->isLoaded()) { - $guild_errors[] = 'Player with name ' . $name . ' is already in guild. He must leave guild before you can invite him.'; + $errors[] = 'Player with name ' . $name . ' is already in guild. He must leave guild before you can invite him.'; } } } } -if(empty($guild_errors)) { +if(empty($errors)) { include(SYSTEM . 'libs/pot/InvitesDriver.php'); new InvitesDriver($guild); $invited_list = $guild->listInvites(); if(count($invited_list) > 0) { foreach($invited_list as $invited) { if($invited->getName() == $player->getName()) { - $guild_errors[] = ''.$invited->getName().' is already invited to your guild.'; + $errors[] = ''.$invited->getName().' is already invited to your guild.'; } } } } -if(!empty($guild_errors)) { - echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo ' -
'; +$show = true; +if(!empty($errors)) { + echo $twig->render('error_box.html.twig', array('errors' => $errors)); } else { if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') { $guild->invite($player); - echo '
Invite player
Player with name '.$player->getName().' has been invited to your guild.

'; + echo $twig->render('success.html.twig', array( + 'title' => 'Invite player', + 'description' => 'Player with name ' . $player->getName() . ' has been invited to your guild.', + 'custom_buttons' => '' + )); + + $show = false; } - else { - echo '
Invite player
Invite player with name:      

'; - } -} \ No newline at end of file +} + +if($show) { + echo $twig->render('success.html.twig', array( + 'title' => 'Invite player', + 'description' => $twig->render('guilds.invite.html.twig', array( + 'guild_name' => $guild->getName() + )), + 'custom_buttons' => '' + )); +} + +echo $twig->render('guilds.back_button.html.twig', array( + 'action' => getLink('guilds') . '/' . $guild_name +)); \ No newline at end of file diff --git a/system/pages/guilds/kick_player.php b/system/pages/guilds/kick_player.php index 8d46444e..0d4b6eaa 100644 --- a/system/pages/guilds/kick_player.php +++ b/system/pages/guilds/kick_player.php @@ -94,19 +94,28 @@ if(empty($errors)) { if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo ' -
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'action' => getLink('guilds') . '/' . $guild_name + )); } else { if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') { $player->setRank(); - echo '
Kick player
Player with name '.$player->getName().' has been kicked from your guild.

'; + + echo $twig->render('success.html.twig', array( + 'title' => 'Kick player', + 'description' => 'Player with name '.$player->getName().' has been kicked from your guild.', + 'custom_buttons' => $twig->render('guilds.back_button.html.twig', array( + 'action' => getLink('guilds') . '/' . $guild_name + )) + )); } - else - { - echo '
Kick player
Are you sure you want to kick player with name '.$player->getName().' from your guild?

  
  
'; + else { + echo $twig->render('guilds.kick_player.html.twig', array( + 'player_name' => $player->getName(), + 'guild_name' => $guild->getName() + )); } } - ?> \ No newline at end of file diff --git a/system/pages/guilds/leave_guild.php b/system/pages/guilds/leave_guild.php index 887cf1da..733ba9ff 100644 --- a/system/pages/guilds/leave_guild.php +++ b/system/pages/guilds/leave_guild.php @@ -15,7 +15,7 @@ defined('MYAAC') or die('Direct access not allowed!'); $guild_name = isset($_REQUEST['guild']) ? $_REQUEST['guild'] : NULL; $name = isset($_REQUEST['name']) ? stripslashes($_REQUEST['name']) : NULL; if(!$logged) { - $errors[] = 'You are not logged in. You can\'t leave guild.'; + $errors[] = "You are not logged in. You can't leave guild."; } if(!Validator::guildName($guild_name)) { @@ -26,7 +26,7 @@ if(empty($errors)) { $guild = new OTS_Guild(); $guild->find($guild_name); if(!$guild->isLoaded()) { - $errors[] = 'Guild with name '.$guild_name.' doesn\'t exist.'; + $errors[] = "Guild with name " . $guild_name . " doesn't exist."; } } @@ -42,11 +42,11 @@ if(empty($errors)) { $player = new OTS_Player(); $player->find($name); if(!$player->isLoaded()) { - $errors[] = 'Character '.$name.' doesn\'t exist.'; + $errors[] = "Character " . $name . " doesn't exist."; } else { if($player->getAccount()->getId() != $account_logged->getId()) { - $errors[] = 'Character '.$name.' isn\'t from your account!'; + $errors[] = "Character " . $name . " isn't from your account!"; } } } @@ -55,17 +55,17 @@ if(empty($errors)) { $player_loaded_rank = $player->getRank(); if($player_loaded_rank->isLoaded()) { if($player_loaded_rank->getGuild()->getName() != $guild->getName()) { - $errors[] = 'Character '.$name.' isn\'t from guild '.$guild->getName().'.'; + $errors[] = "Character " . $name . " isn't from guild " . $guild->getName() . "."; } } else { - $errors[] = 'Character '.$name.' isn\'t in any guild.'; + $errors[] = "Character " . $name . " isn't in any guild."; } } if(empty($errors)) { if($guild_owner_name == $player->getName()) { - $errors[] = 'You can\'t leave guild. You are an owner of guild.'; + $errors[] = "You can't leave guild. You are an owner of guild."; } } } @@ -87,39 +87,30 @@ if(empty($errors)) { if(!empty($errors)) { echo $twig->render('error_box.html.twig', array('errors' => $errors)); - echo ' -
'; + echo $twig->render('guilds.back_button.html.twig', array( + 'action' => getLink('guilds') . '/' . $guild_name + )); } else { if(isset($_REQUEST['todo']) && $_REQUEST['todo'] == 'save') { $player->setRank(); - echo '
Leave guild
Player with name '.$player->getName().' leaved guild '.$guild->getName().'.

'; + $twig->render('success.html.twig', array( + 'title' => 'Leave guild', + 'description' => 'Player with name '.$player->getName().' leaved guild '.$guild->getName().'.', + 'custom_buttons' => $twig->render('guilds.back_button.html.twig', array( + 'action' => getLink('guilds') . '/' . $guild_name + )) + )); } else { - echo ''; - if(count($array_of_player_ig) > 0) { - echo ''; - echo '
Leave guild
Select character to leave guild:
-
'; - - sort($array_of_player_ig); - foreach($array_of_player_ig as $player_to_leave) { - echo ''.$player_to_leave.'
'; - } - echo '
'; - } - else { - echo 'Any of your characters can\'t leave guild.'; - } + sort($array_of_player_ig); - echo ''; - if(count($array_of_player_ig) > 0) { - echo ''; - } - - echo '
'; + echo $twig->render('guilds.leave_guild.html.twig', array( + 'players' => $array_of_player_ig, + 'guild_name' => $guild_name + )); } } diff --git a/system/pages/guilds/list_of_guilds.php b/system/pages/guilds/list_of_guilds.php index cf4a2bca..c9053cdf 100644 --- a/system/pages/guilds/list_of_guilds.php +++ b/system/pages/guilds/list_of_guilds.php @@ -67,7 +67,7 @@ if($_REQUEST['preview'] == 2) if($logged) echo '
- +
'; echo ' @@ -95,7 +95,7 @@ else if(admin()) echo '
Delete this guild (for ADMIN only!)'; echo '
- +
'; } @@ -106,7 +106,7 @@ else '; if($logged) echo '
- +
'; echo ' '; @@ -116,13 +116,13 @@ else echo '

'; if($logged) echo '
- +

If you have any problem with guilds try:
Cleanup players - can\'t join guild/be invited? Can\'t create guild? Try cleanup players.
Cleanup guilds - made guild, you are a leader, but you are not on players list? Cleanup guilds!'; else echo 'Before you can create guild you must login.
- +
'; ?> \ No newline at end of file diff --git a/system/pages/guilds/pass_leadership.php b/system/pages/guilds/pass_leadership.php index 6b545559..57f2f583 100644 --- a/system/pages/guilds/pass_leadership.php +++ b/system/pages/guilds/pass_leadership.php @@ -86,7 +86,7 @@ if(empty($guild_errors) && empty($guild_errors2)) { echo $twig->render('success.html.twig', array( 'title' => 'Leadership passed', 'description' => ''.$to_player->getName().' is now a Leader of '.$guild_name.'.', - 'custom_buttons' => '
' + 'custom_buttons' => '
' . $twig->render('buttons.back.html.twig') . '
' )); } else { @@ -106,7 +106,7 @@ if(empty($guild_errors) && empty($guild_errors2)) { if(empty($guild_errors) && !empty($guild_errors2)) { echo $twig->render('error_box.html.twig', array('errors' => $guild_errors2)); - echo '
'; + echo '
' . $twig->render('buttons.back.html.twig') . '
'; } if(!empty($guild_errors)) { if(!empty($guild_errors2)) { @@ -114,7 +114,7 @@ if(!empty($guild_errors)) { } echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo '
'; + echo '
' . $twig->render('buttons.back.html.twig') . '
'; } ?> \ No newline at end of file diff --git a/system/pages/guilds/show.php b/system/pages/guilds/show.php index b995888b..3ba571f6 100644 --- a/system/pages/guilds/show.php +++ b/system/pages/guilds/show.php @@ -13,19 +13,19 @@ defined('MYAAC') or die('Direct access not allowed!'); $guild_name = $_REQUEST['guild']; if(!Validator::guildName($guild_name)) - $guild_errors[] = Validator::getLastError(); -if(empty($guild_errors)) + $errors[] = Validator::getLastError(); +if(empty($errors)) { $guild = $ots->createObject('Guild'); $guild->find($guild_name); if(!$guild->isLoaded()) - $guild_errors[] = 'Guild with name '.$guild_name.' doesn\'t exist.'; + $errors[] = 'Guild with name '.$guild_name.' doesn\'t exist.'; } -if(!empty($guild_errors)) +if(!empty($errors)) { - echo $twig->render('error_box.html.twig', array('errors' => $guild_errors)); - echo ' -
'; + echo $twig->render('error_box.html.twig', array('errors' => $errors)); + + echo $twig->render('guilds.back_button.html.twig'); } else { @@ -88,7 +88,7 @@ else
'.$description.'

'.$guild_owner.' is guild leader of '.$guild->getName().'.
The guild was founded on '.$config['lua']['serverName'].' on '.date("j F Y", $guild->getCreationData()).'.'; if($guild_leader) - echo '   Manage Guild'; + echo '   Manage Guild'; echo '

@@ -196,7 +196,7 @@ else '.$houseInfo['name'].' - + '; @@ -219,7 +219,7 @@ else $showed_invited = 1; foreach($invited_list as $invited_player) { - if(count($account_players) > 0) + if($logged && count($account_players) > 0) foreach($account_players as $player_from_acc) if($player_from_acc->getName() == $invited_player->getName()) $show_accept_invite++; @@ -235,30 +235,30 @@ else
'; if(!$logged) echo ''; else { if($show_accept_invite > 0) echo ''; if($guild_vice) { echo ''; echo ''; } if(count($players_from_account_in_guild) > 0) echo ''; } echo '
- +
- +
- +
- +
- +
- + ' . $twig->render('buttons.back.html.twig') . '
diff --git a/system/pages/houses.php b/system/pages/houses.php index 66587000..b6053329 100644 --- a/system/pages/houses.php +++ b/system/pages/houses.php @@ -225,7 +225,7 @@ $type = '';
- +
@@ -301,7 +301,7 @@ $type = '';
- + ' . $twig->render('buttons.submit.html.twig') . '
'; } diff --git a/system/pages/lostaccount.php b/system/pages/lostaccount.php index 203cdb56..3291bf3c 100644 --- a/system/pages/lostaccount.php +++ b/system/pages/lostaccount.php @@ -53,7 +53,7 @@ elseif($action == 'step1' && $action_type == 'email')
-
+ ' . $twig->render('buttons.submit.html.twig') . '
'; else { @@ -70,7 +70,7 @@ elseif($action == 'step1' && $action_type == 'email') else echo 'Invalid player name format. If you have other characters on account try with other name.'; echo '
- Back
+ Back
'; } elseif($action == 'sendcode') @@ -133,7 +133,7 @@ elseif($action == 'sendcode') else echo 'Invalid player name format. If you have other characters on account try with other name.'; echo '
- Back
+ Back
'; } elseif($action == 'step1' && $action_type == 'reckey') @@ -162,7 +162,7 @@ elseif($action == 'step1' && $action_type == 'reckey')
-
+ ' . $twig->render('buttons.submit.html.twig') . '
'; } else @@ -174,7 +174,7 @@ elseif($action == 'step1' && $action_type == 'reckey') else echo 'Invalid player name format. If you have other characters on account try with other name.'; echo '
- Back
+ Back
'; } elseif($action == 'step2') @@ -248,7 +248,7 @@ elseif($action == 'step2')
-
+ ' . $twig->render('buttons.submit.html.twig') . '
'; } else @@ -263,7 +263,7 @@ elseif($action == 'step2') else echo 'Invalid player name format. If you have other characters on account try with other name.'; echo '
- Back
+ Back
'; } elseif($action == 'step3') @@ -341,7 +341,7 @@ elseif($action == 'step3')
-
+
'; } else @@ -362,7 +362,7 @@ elseif($action == 'step3') else echo 'Invalid player name format. If you have other characters on account try with other name.'; echo '
- Back
+ Back
'; } elseif($action == 'checkcode') @@ -381,7 +381,7 @@ elseif($action == 'checkcode')
-
+ ' . $twig->render('buttons.submit.html.twig') . '
'; else { @@ -431,7 +431,7 @@ elseif($action == 'checkcode')
-
+ ' . $twig->render('buttons.submit.html.twig') . '
'; } else @@ -452,7 +452,7 @@ elseif($action == 'checkcode')
-
+ ' . $twig->render('buttons.submit.html.twig') . '
'; } elseif($action == 'setnewpassword') @@ -465,7 +465,7 @@ elseif($action == 'setnewpassword') echo 'Error. Try again.
Please enter code from e-mail and name of one character from account. Then press Submit.

-
+
'; else { @@ -519,7 +519,7 @@ elseif($action == 'setnewpassword')
-
+
'; } else @@ -543,7 +543,7 @@ elseif($action == 'setnewpassword')
-
+ ' . $twig->render('buttons.submit.html.twig') . '
'; } ?> diff --git a/system/pages/news.php b/system/pages/news.php index 80bc1ac4..7ee83276 100644 --- a/system/pages/news.php +++ b/system/pages/news.php @@ -69,7 +69,7 @@ if(isset($_GET['archive'])) ?>
- +
render('online.html.twig', array( )); //search bar -echo '
-
- - - - - - - -
- Search Character -
- - - - - - -
Name: - - - -
-
-
'; +echo $twig->render('online.form.html.twig'); ?> diff --git a/system/pages/spells.php b/system/pages/spells.php index 2ee035ba..7623cf3f 100644 --- a/system/pages/spells.php +++ b/system/pages/spells.php @@ -46,24 +46,33 @@ if(!in_array($order, array('spell', 'words', 'type', 'mana', 'level', 'maglevel' Spell Search - Only for vocation: -     + + + + + + +
Only for vocation: + + + render('buttons.submit.html.twig'); ?> +
diff --git a/system/templates/account.change_comment.html.twig b/system/templates/account.change_comment.html.twig index cd621d14..95ac37f0 100644 --- a/system/templates/account.change_comment.html.twig +++ b/system/templates/account.change_comment.html.twig @@ -90,8 +90,7 @@ If you do not want to specify a certain field, just leave it blank.

-
-
+ {{ include('buttons.submit.html.twig') }} @@ -102,8 +101,7 @@ If you do not want to specify a certain field, just leave it blank.

-
-
+ {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/account.change_info.html.twig b/system/templates/account.change_info.html.twig index 49679a3c..80be0bd2 100644 --- a/system/templates/account.change_info.html.twig +++ b/system/templates/account.change_info.html.twig @@ -79,9 +79,7 @@ Here you can tell other players about yourself. This information will be display -
-
-
+ {{ include('buttons.submit.html.twig') }} @@ -92,9 +90,7 @@ Here you can tell other players about yourself. This information will be display
-
-
-
+ {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/account.change_mail.html.twig b/system/templates/account.change_mail.html.twig index cbfd1467..1965f7a0 100644 --- a/system/templates/account.change_mail.html.twig +++ b/system/templates/account.change_mail.html.twig @@ -49,8 +49,7 @@ Please enter your password and the new email address. Make sure that you enter a -
-
+ {{ include('buttons.submit.html.twig') }} @@ -61,8 +60,7 @@ Please enter your password and the new email address. Make sure that you enter a
-
-
+ {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/account.change_name.html.twig b/system/templates/account.change_name.html.twig index a4376390..df6f9643 100644 --- a/system/templates/account.change_name.html.twig +++ b/system/templates/account.change_name.html.twig @@ -55,8 +55,7 @@ To change a name of character select player and choose a new name.
@@ -67,8 +66,7 @@ To change a name of character select player and choose a new name.
diff --git a/system/templates/account.change_password.html.twig b/system/templates/account.change_password.html.twig index f92f0665..d801a733 100644 --- a/system/templates/account.change_password.html.twig +++ b/system/templates/account.change_password.html.twig @@ -57,8 +57,7 @@ Please enter your current password and a new password. For your security, please
-
-
+ {{ include('buttons.submit.html.twig') }}
-
-
+ {{ include('buttons.back.html.twig') }}
-
-
+ {{ include('buttons.submit.html.twig') }}
@@ -69,8 +68,7 @@ Please enter your current password and a new password. For your security, please
-
-
+ {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/account.change_sex.html.twig b/system/templates/account.change_sex.html.twig index da0d25b4..c57725ca 100644 --- a/system/templates/account.change_sex.html.twig +++ b/system/templates/account.change_sex.html.twig @@ -54,8 +54,7 @@ To change a sex of character select player and choose a new sex.
@@ -67,8 +66,7 @@ To change a sex of character select player and choose a new sex.
diff --git a/system/templates/account.create.html.twig b/system/templates/account.create.html.twig index a5f30886..fc99f1f9 100644 --- a/system/templates/account.create.html.twig +++ b/system/templates/account.create.html.twig @@ -124,12 +124,7 @@ Also you have to agree to the terms presented below. If you have done so, your a
-
-
+ {{ include('buttons.submit.html.twig') }}
-
-
+ {{ include('buttons.back.html.twig') }}
-
-
-
- -
-
+ {{ include('buttons.submit.html.twig') }}
diff --git a/system/templates/account.create_character.html.twig b/system/templates/account.create_character.html.twig index b4765510..ae11b47d 100644 --- a/system/templates/account.create_character.html.twig +++ b/system/templates/account.create_character.html.twig @@ -126,9 +126,7 @@ In any case the name must not violate the naming conventions stated in the -
-
-
+ {{ include('buttons.submit.html.twig') }} @@ -139,7 +137,7 @@ In any case the name must not violate the naming conventions stated in the
-
+ {{ include('buttons.back.html.twig') }} diff --git a/system/templates/account.delete_character.html.twig b/system/templates/account.delete_character.html.twig index 31ba9129..4a481f3a 100644 --- a/system/templates/account.delete_character.html.twig +++ b/system/templates/account.delete_character.html.twig @@ -45,8 +45,7 @@ To delete a character enter the name of the character and your password.

-
-
+ {{ include('buttons.submit.html.twig') }} @@ -57,8 +56,7 @@ To delete a character enter the name of the character and your password.

-
-
+ {{ include('buttons.back.html.twig') }} diff --git a/system/templates/account.generate_new_recovery_key.html.twig b/system/templates/account.generate_new_recovery_key.html.twig index 19e86b56..5723ffb4 100644 --- a/system/templates/account.generate_new_recovery_key.html.twig +++ b/system/templates/account.generate_new_recovery_key.html.twig @@ -38,8 +38,7 @@ To generate new recovery key for your account please enter your password.
@@ -50,8 +49,7 @@ To generate new recovery key for your account please enter your password.
diff --git a/system/templates/account.generate_recovery_key.html.twig b/system/templates/account.generate_recovery_key.html.twig index 81b52163..c1193edd 100644 --- a/system/templates/account.generate_recovery_key.html.twig +++ b/system/templates/account.generate_recovery_key.html.twig @@ -41,8 +41,7 @@ To generate recovery key for your account please enter your password.

-
-
+ {{ include('buttons.submit.html.twig') }}
-
-
+ {{ include('buttons.back.html.twig') }}
-
-
+ {{ include('buttons.submit.html.twig') }}
@@ -53,8 +52,7 @@ To generate recovery key for your account please enter your password.

-
-
+ {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/account.login.html.twig b/system/templates/account.login.html.twig index 630eb07c..5973d4a4 100644 --- a/system/templates/account.login.html.twig +++ b/system/templates/account.login.html.twig @@ -55,10 +55,7 @@ Please enter your account {{ account|lower }} and your password.
-
- -
-
+ {{ include('buttons.submit.html.twig') }} @@ -69,10 +66,7 @@ Please enter your account {{ account|lower }} and your password.
-
- -
-
+ {{ include('buttons.account_lost.html.twig') }} diff --git a/system/templates/account.lost.form.html.twig b/system/templates/account.lost.form.html.twig index 50cd9b36..33456fd0 100644 --- a/system/templates/account.lost.form.html.twig +++ b/system/templates/account.lost.form.html.twig @@ -28,7 +28,7 @@ The Lost Account Interface can help you to get back your account name and passwo
- + {{ include('buttons.submit.html.twig') }}
diff --git a/system/templates/account.lost.noaction.html.twig b/system/templates/account.lost.noaction.html.twig index 61a494f7..c74ca45b 100644 --- a/system/templates/account.lost.noaction.html.twig +++ b/system/templates/account.lost.noaction.html.twig @@ -3,7 +3,7 @@ Please select action.
- back + {{ include('buttons.back.html.twig') }} diff --git a/system/templates/buttons.account_lost.html.twig b/system/templates/buttons.account_lost.html.twig new file mode 100644 index 00000000..8fd3898a --- /dev/null +++ b/system/templates/buttons.account_lost.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Account lost?' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.back.html.twig b/system/templates/buttons.back.html.twig new file mode 100644 index 00000000..44fbb164 --- /dev/null +++ b/system/templates/buttons.back.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Back' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.base.html.twig b/system/templates/buttons.base.html.twig new file mode 100644 index 00000000..d44bce10 --- /dev/null +++ b/system/templates/buttons.base.html.twig @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/system/templates/buttons.cancel.html.twig b/system/templates/buttons.cancel.html.twig new file mode 100644 index 00000000..28bc6992 --- /dev/null +++ b/system/templates/buttons.cancel.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Cancel' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.change_email.html.twig b/system/templates/buttons.change_email.html.twig new file mode 100644 index 00000000..49fddf66 --- /dev/null +++ b/system/templates/buttons.change_email.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Change Email' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.change_name.html.twig b/system/templates/buttons.change_name.html.twig new file mode 100644 index 00000000..a187c361 --- /dev/null +++ b/system/templates/buttons.change_name.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Change Name' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.change_password.html.twig b/system/templates/buttons.change_password.html.twig new file mode 100644 index 00000000..f320fc8e --- /dev/null +++ b/system/templates/buttons.change_password.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Change Password' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.change_sex.html.twig b/system/templates/buttons.change_sex.html.twig new file mode 100644 index 00000000..2d90f6d4 --- /dev/null +++ b/system/templates/buttons.change_sex.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Change Sex' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.create_character.html.twig b/system/templates/buttons.create_character.html.twig new file mode 100644 index 00000000..00509b6d --- /dev/null +++ b/system/templates/buttons.create_character.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Create Character' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.delete_character.html.twig b/system/templates/buttons.delete_character.html.twig new file mode 100644 index 00000000..3f44b47e --- /dev/null +++ b/system/templates/buttons.delete_character.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Delete Character' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.edit.html.twig b/system/templates/buttons.edit.html.twig new file mode 100644 index 00000000..e254d0b1 --- /dev/null +++ b/system/templates/buttons.edit.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Edit' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.login.html.twig b/system/templates/buttons.login.html.twig new file mode 100644 index 00000000..85944665 --- /dev/null +++ b/system/templates/buttons.login.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Login' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.logout.html.twig b/system/templates/buttons.logout.html.twig new file mode 100644 index 00000000..b33a18fd --- /dev/null +++ b/system/templates/buttons.logout.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Logout' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.register_account.html.twig b/system/templates/buttons.register_account.html.twig new file mode 100644 index 00000000..594fdd2a --- /dev/null +++ b/system/templates/buttons.register_account.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Register Account' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/buttons.submit.html.twig b/system/templates/buttons.submit.html.twig new file mode 100644 index 00000000..a4bebd2a --- /dev/null +++ b/system/templates/buttons.submit.html.twig @@ -0,0 +1,2 @@ +{% set button_name = 'Submit' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/system/templates/characters.form.html.twig b/system/templates/characters.form.html.twig index 08bedc54..d731b4e2 100644 --- a/system/templates/characters.form.html.twig +++ b/system/templates/characters.form.html.twig @@ -1,15 +1,17 @@
- + + +
Search Character
- - - - - -
Name: - -
-
+ + + + + +
Name: + {{ include('buttons.submit.html.twig') }} +
+
\ No newline at end of file diff --git a/system/templates/characters.html.twig b/system/templates/characters.html.twig index ec4c7c30..c09b37b5 100644 --- a/system/templates/characters.html.twig +++ b/system/templates/characters.html.twig @@ -95,7 +95,7 @@
- +
@@ -365,7 +365,7 @@ - + diff --git a/system/templates/creatures.back_button.html.twig b/system/templates/creatures.back_button.html.twig new file mode 100644 index 00000000..30f7cac4 --- /dev/null +++ b/system/templates/creatures.back_button.html.twig @@ -0,0 +1,6 @@ +

+
+
+ {{ include('buttons.back.html.twig') }} +
+
\ No newline at end of file diff --git a/system/templates/guilds.accept_invite.html.twig b/system/templates/guilds.accept_invite.html.twig new file mode 100644 index 00000000..c797a644 --- /dev/null +++ b/system/templates/guilds.accept_invite.html.twig @@ -0,0 +1,32 @@ + + + + + + + + + + +
Accept invitation
Select character to join guild:
+
+ {% set i = 0 %} + {% for player in invited_players %} + + {% set i = i + 1 %} + {% endfor %} + {{ include('buttons.submit.html.twig') }} +
+
+
+
+ + + + +
+
+ {{ include('buttons.back.html.twig') }} +
+
+
\ No newline at end of file diff --git a/system/templates/guilds.back_button.html.twig b/system/templates/guilds.back_button.html.twig new file mode 100644 index 00000000..77eaf0fe --- /dev/null +++ b/system/templates/guilds.back_button.html.twig @@ -0,0 +1,8 @@ +{% if new_line is defined and new_line %} +
+{% endif %} +
+
+ {{ include('buttons.back.html.twig') }} +
+
\ No newline at end of file diff --git a/system/templates/guilds.change_description.html.twig b/system/templates/guilds.change_description.html.twig index 798ebc6d..b38b875a 100644 --- a/system/templates/guilds.change_description.html.twig +++ b/system/templates/guilds.change_description.html.twig @@ -5,15 +5,8 @@ Here you can change description of your guild.

(max. {{ config.guild_description_lines_limit }} lines, max. {{ config.guild_description_chars_limit }} chars)

-{% spaceless %}
-
-
-
- -
-
+ {{ include('buttons.back.html.twig') }}
-
-{% endspaceless %} \ No newline at end of file + \ No newline at end of file diff --git a/system/templates/guilds.change_logo.html.twig b/system/templates/guilds.change_logo.html.twig index 6fe54e79..a75829d8 100644 --- a/system/templates/guilds.change_logo.html.twig +++ b/system/templates/guilds.change_logo.html.twig @@ -11,11 +11,8 @@ Only jpg, gif, png, bmp pictures. Max. size: {{ config.guild_image_siz {% spaceless %}
-
-
-
- -
+
+ {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/guilds.change_motd.html.twig b/system/templates/guilds.change_motd.html.twig index 0002348d..7a31ca24 100644 --- a/system/templates/guilds.change_motd.html.twig +++ b/system/templates/guilds.change_motd.html.twig @@ -8,11 +8,8 @@ Here you can change MOTD (Message of the Day, showed in game!) of your guild.
-
-
-
- -
+
+ {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/guilds.change_rank.html.twig b/system/templates/guilds.change_rank.html.twig new file mode 100644 index 00000000..3f9da6ed --- /dev/null +++ b/system/templates/guilds.change_rank.html.twig @@ -0,0 +1,37 @@ +
+ + + + + +
Change Rank
+ + + + + +
Name:  Rank:  + + {{ include('buttons.submit.html.twig') }} +
+
+
+ + + + +
+
+
+ {{ include('buttons.back.html.twig') }} +
+
+
\ No newline at end of file diff --git a/system/templates/guilds.create_guild.html.twig b/system/templates/guilds.create_guild.html.twig index 0c3965ff..e40cae20 100644 --- a/system/templates/guilds.create_guild.html.twig +++ b/system/templates/guilds.create_guild.html.twig @@ -42,12 +42,12 @@
- + {{ include('buttons.submit.html.twig') }}
- + {{ include('buttons.back.html.twig') }}
diff --git a/system/templates/guilds.create_guild.success.html.twig b/system/templates/guilds.create_guild.success.html.twig new file mode 100644 index 00000000..5e7c97eb --- /dev/null +++ b/system/templates/guilds.create_guild.success.html.twig @@ -0,0 +1,22 @@ +{% set title = 'Created guild' %} + +{% set motd = '' %} +{% if constant('MOTD_EXISTS') %} +{% set motd = ' and motd' %} +{% endif %} + +{% set description = 'Congratulations!
You have created guild ' ~ guild_name ~ '. ' ~ leader_name ~ ' is leader of this guild. Now you can invite players, change picture, description' ~ motd ~ ' of guild. Press submit to open guild manager.' %} +{% set custom_buttons = '' %} +{{ include('success.html.twig') }} +
+ + + + +
+
+
+ {{ include('buttons.submit.html.twig') }} +
+
+
\ No newline at end of file diff --git a/system/templates/guilds.delete_guild.html.twig b/system/templates/guilds.delete_guild.html.twig index 09122554..6e103327 100644 --- a/system/templates/guilds.delete_guild.html.twig +++ b/system/templates/guilds.delete_guild.html.twig @@ -32,15 +32,8 @@

-{% spaceless %}
-
-
-
- -
-
+ {{ include('buttons.back.html.twig') }}
-
-{% endspaceless %} \ No newline at end of file + \ No newline at end of file diff --git a/system/templates/guilds.delete_invite.html.twig b/system/templates/guilds.delete_invite.html.twig new file mode 100644 index 00000000..3bccb429 --- /dev/null +++ b/system/templates/guilds.delete_invite.html.twig @@ -0,0 +1,22 @@ +{% set title = 'Delete player invitation' %} +{% set description = 'Are you sure you want to delete player with name ' ~ player_name ~ ' from "invites list"?' %} +{% set custom_buttons = '' %} +{{ include('success.html.twig') }} +
+
+ + + + + + +
+
+ {{ include('buttons.submit.html.twig') }} +
+
+
+ {{ include('buttons.back.html.twig') }} +
+
+
\ No newline at end of file diff --git a/system/templates/guilds.invite.html.twig b/system/templates/guilds.invite.html.twig new file mode 100644 index 00000000..df822e59 --- /dev/null +++ b/system/templates/guilds.invite.html.twig @@ -0,0 +1,4 @@ +
+ Invite player with name:       + {{ include('buttons.submit.html.twig') }} +
\ No newline at end of file diff --git a/system/templates/guilds.kick_player.html.twig b/system/templates/guilds.kick_player.html.twig new file mode 100644 index 00000000..5e55729d --- /dev/null +++ b/system/templates/guilds.kick_player.html.twig @@ -0,0 +1,22 @@ +{% set title = 'Kick player' %} +{% set description = 'Are you sure you want to kick player with name ' ~ player_name ~ ' from your guild?' %} +{% set custom_buttons = '' %} +{{ include('success.html.twig') }} +
+
+ + + + + + +
+
+ {{ include('buttons.submit.html.twig') }} +
+
+
+ {{ include('buttons.back.html.twig') }} +
+
+
\ No newline at end of file diff --git a/system/templates/guilds.leave_guild.html.twig b/system/templates/guilds.leave_guild.html.twig new file mode 100644 index 00000000..989e1134 --- /dev/null +++ b/system/templates/guilds.leave_guild.html.twig @@ -0,0 +1,34 @@ +
+ + + + {% if players|length > 0 %} + + + + + + + {% else %} + + {% endif %} +
Leave guild
Select character to leave guild:
+ {% for player in players %} + {{ player }}
+ {% endfor %} +
Any of your characters can't leave guild.
+ + + {% if players|length > 0 %} + + {% endif %} + + + +
+ {{ include('buttons.submit.html.twig') }} + +
+ {{ include('buttons.back.html.twig') }} +
+
\ No newline at end of file diff --git a/system/templates/guilds.manager.html.twig b/system/templates/guilds.manager.html.twig index de4edd47..02712053 100644 --- a/system/templates/guilds.manager.html.twig +++ b/system/templates/guilds.manager.html.twig @@ -163,7 +163,6 @@ Here you can change names of ranks, delete and add ranks, pass leadership to oth
-
-
+ {{ include('buttons.back.html.twig') }}
\ No newline at end of file diff --git a/system/templates/guilds.pass_leadership.html.twig b/system/templates/guilds.pass_leadership.html.twig index a9c0ce8e..0612733f 100644 --- a/system/templates/guilds.pass_leadership.html.twig +++ b/system/templates/guilds.pass_leadership.html.twig @@ -35,7 +35,6 @@
-
-
+ {{ include('buttons.back.html.twig') }}
\ No newline at end of file diff --git a/system/templates/online.form.html.twig b/system/templates/online.form.html.twig new file mode 100644 index 00000000..82c6f7b2 --- /dev/null +++ b/system/templates/online.form.html.twig @@ -0,0 +1,25 @@ +
+
+ + + + + + + +
+ Search Character +
+ + + + + + +
Name: + + + {{ include('buttons.submit.html.twig') }} +
+
+
\ No newline at end of file diff --git a/system/templates/success.html.twig b/system/templates/success.html.twig index 287b09da..8da4bce5 100644 --- a/system/templates/success.html.twig +++ b/system/templates/success.html.twig @@ -6,7 +6,7 @@ -
{{ title }}
+
{{ title|raw }}
@@ -35,8 +35,7 @@
-
-
+ {{ include('buttons.back.html.twig') }}
diff --git a/templates/tibiacom/images/buttons/_sbutton_accountlost.gif b/templates/kathrine/images/global/buttons/_sbutton_accountlost.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_accountlost.gif rename to templates/kathrine/images/global/buttons/_sbutton_accountlost.gif diff --git a/templates/tibiacom/images/buttons/_sbutton_back.gif b/templates/kathrine/images/global/buttons/_sbutton_back.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_back.gif rename to templates/kathrine/images/global/buttons/_sbutton_back.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_buynow.gif b/templates/kathrine/images/global/buttons/_sbutton_buynow.gif new file mode 100755 index 00000000..7c01d728 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_buynow.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_cancel.gif b/templates/kathrine/images/global/buttons/_sbutton_cancel.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_cancel.gif rename to templates/kathrine/images/global/buttons/_sbutton_cancel.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_change_name.gif b/templates/kathrine/images/global/buttons/_sbutton_change_name.gif new file mode 100644 index 00000000..026844d1 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_change_name.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_change_sex.gif b/templates/kathrine/images/global/buttons/_sbutton_change_sex.gif new file mode 100644 index 00000000..01b371ec Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_change_sex.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_changeemail.gif b/templates/kathrine/images/global/buttons/_sbutton_changeemail.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_changeemail.gif rename to templates/kathrine/images/global/buttons/_sbutton_changeemail.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_changename.gif b/templates/kathrine/images/global/buttons/_sbutton_changename.gif new file mode 100755 index 00000000..14e189aa Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_changename.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_changepassword.gif b/templates/kathrine/images/global/buttons/_sbutton_changepassword.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_changepassword.gif rename to templates/kathrine/images/global/buttons/_sbutton_changepassword.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_changesex.gif b/templates/kathrine/images/global/buttons/_sbutton_changesex.gif new file mode 100755 index 00000000..cc1542e8 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_changesex.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_confirm.gif b/templates/kathrine/images/global/buttons/_sbutton_confirm.gif new file mode 100755 index 00000000..638a8e75 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_confirm.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_continue.gif b/templates/kathrine/images/global/buttons/_sbutton_continue.gif new file mode 100755 index 00000000..eaa935ea Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_continue.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_createaccount.gif b/templates/kathrine/images/global/buttons/_sbutton_createaccount.gif new file mode 100755 index 00000000..92404134 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_createaccount.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_createcharacter.gif b/templates/kathrine/images/global/buttons/_sbutton_createcharacter.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_createcharacter.gif rename to templates/kathrine/images/global/buttons/_sbutton_createcharacter.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_declarewar.gif b/templates/kathrine/images/global/buttons/_sbutton_declarewar.gif new file mode 100755 index 00000000..498d4830 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_declarewar.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_delete.gif b/templates/kathrine/images/global/buttons/_sbutton_delete.gif new file mode 100755 index 00000000..fd3481dd Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_delete.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_deletecharacter.gif b/templates/kathrine/images/global/buttons/_sbutton_deletecharacter.gif similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_deletecharacter.gif rename to templates/kathrine/images/global/buttons/_sbutton_deletecharacter.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_disbandguild.gif b/templates/kathrine/images/global/buttons/_sbutton_disbandguild.gif new file mode 100755 index 00000000..2ace4506 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_disbandguild.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_edit.gif b/templates/kathrine/images/global/buttons/_sbutton_edit.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_edit.gif rename to templates/kathrine/images/global/buttons/_sbutton_edit.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_editdescription.gif b/templates/kathrine/images/global/buttons/_sbutton_editdescription.gif new file mode 100755 index 00000000..9a6eb85a Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_editdescription.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_editmembers.gif b/templates/kathrine/images/global/buttons/_sbutton_editmembers.gif new file mode 100755 index 00000000..c953fabc Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_editmembers.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_editranks.gif b/templates/kathrine/images/global/buttons/_sbutton_editranks.gif new file mode 100755 index 00000000..f0dd007d Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_editranks.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_foundguild.gif b/templates/kathrine/images/global/buttons/_sbutton_foundguild.gif new file mode 100755 index 00000000..b06982f7 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_foundguild.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_getextraservice.gif b/templates/kathrine/images/global/buttons/_sbutton_getextraservice.gif new file mode 100755 index 00000000..252066c2 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_getextraservice.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_getmount.gif b/templates/kathrine/images/global/buttons/_sbutton_getmount.gif new file mode 100755 index 00000000..65f04640 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_getmount.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_getoutfit.gif b/templates/kathrine/images/global/buttons/_sbutton_getoutfit.gif new file mode 100755 index 00000000..43a5cf2c Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_getoutfit.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_getpremium.gif b/templates/kathrine/images/global/buttons/_sbutton_getpremium.gif new file mode 100755 index 00000000..f300107d Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_getpremium.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_getpremiumscroll.gif b/templates/kathrine/images/global/buttons/_sbutton_getpremiumscroll.gif new file mode 100755 index 00000000..e040d9e4 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_getpremiumscroll.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_getpremiumtime.gif b/templates/kathrine/images/global/buttons/_sbutton_getpremiumtime.gif new file mode 100755 index 00000000..8a4cbe18 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_getpremiumtime.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_gettibiacoins.gif b/templates/kathrine/images/global/buttons/_sbutton_gettibiacoins.gif new file mode 100755 index 00000000..b2d961ce Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_gettibiacoins.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_guildevents.gif b/templates/kathrine/images/global/buttons/_sbutton_guildevents.gif new file mode 100755 index 00000000..00fba28a Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_guildevents.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_guildwars.gif b/templates/kathrine/images/global/buttons/_sbutton_guildwars.gif new file mode 100755 index 00000000..4aac5e45 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_guildwars.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_iagree.gif b/templates/kathrine/images/global/buttons/_sbutton_iagree.gif new file mode 100755 index 00000000..88ea06e4 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_iagree.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_invitecharacter.gif b/templates/kathrine/images/global/buttons/_sbutton_invitecharacter.gif new file mode 100755 index 00000000..7bca4000 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_invitecharacter.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_joinguild.gif b/templates/kathrine/images/global/buttons/_sbutton_joinguild.gif new file mode 100755 index 00000000..3cfae68c Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_joinguild.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_jointibia.gif b/templates/kathrine/images/global/buttons/_sbutton_jointibia.gif similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_jointibia.gif rename to templates/kathrine/images/global/buttons/_sbutton_jointibia.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_leaveguild.gif b/templates/kathrine/images/global/buttons/_sbutton_leaveguild.gif new file mode 100755 index 00000000..4da7a474 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_leaveguild.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_login.gif b/templates/kathrine/images/global/buttons/_sbutton_login.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_login.gif rename to templates/kathrine/images/global/buttons/_sbutton_login.gif diff --git a/templates/tibiacom/images/buttons/_sbutton_logout.gif b/templates/kathrine/images/global/buttons/_sbutton_logout.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_logout.gif rename to templates/kathrine/images/global/buttons/_sbutton_logout.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_manageaccount.gif b/templates/kathrine/images/global/buttons/_sbutton_manageaccount.gif new file mode 100755 index 00000000..b9427b79 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_manageaccount.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_myaccount.gif b/templates/kathrine/images/global/buttons/_sbutton_myaccount.gif similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_myaccount.gif rename to templates/kathrine/images/global/buttons/_sbutton_myaccount.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_next.gif b/templates/kathrine/images/global/buttons/_sbutton_next.gif new file mode 100755 index 00000000..c4222252 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_next.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_overview.gif b/templates/kathrine/images/global/buttons/_sbutton_overview.gif new file mode 100755 index 00000000..a9484553 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_overview.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_painel.gif b/templates/kathrine/images/global/buttons/_sbutton_painel.gif new file mode 100755 index 00000000..8c71b329 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_painel.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_previous.gif b/templates/kathrine/images/global/buttons/_sbutton_previous.gif new file mode 100755 index 00000000..b81206e5 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_previous.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_registeraccount.gif b/templates/kathrine/images/global/buttons/_sbutton_registeraccount.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_registeraccount.gif rename to templates/kathrine/images/global/buttons/_sbutton_registeraccount.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_renameaccount.gif b/templates/kathrine/images/global/buttons/_sbutton_renameaccount.gif new file mode 100755 index 00000000..160efb64 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_renameaccount.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_resignleadership.gif b/templates/kathrine/images/global/buttons/_sbutton_resignleadership.gif new file mode 100755 index 00000000..f593635c Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_resignleadership.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_showall.gif b/templates/kathrine/images/global/buttons/_sbutton_showall.gif new file mode 100755 index 00000000..fcd60935 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_showall.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_showonline.gif b/templates/kathrine/images/global/buttons/_sbutton_showonline.gif new file mode 100755 index 00000000..b1108cc5 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_showonline.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_submit.gif b/templates/kathrine/images/global/buttons/_sbutton_submit.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_submit.gif rename to templates/kathrine/images/global/buttons/_sbutton_submit.gif diff --git a/templates/kathrine/images/global/buttons/_sbutton_terminateaccount.gif b/templates/kathrine/images/global/buttons/_sbutton_terminateaccount.gif new file mode 100755 index 00000000..095712f3 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_terminateaccount.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_usegamecode.gif b/templates/kathrine/images/global/buttons/_sbutton_usegamecode.gif new file mode 100755 index 00000000..c6974c14 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_usegamecode.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_vermais.gif b/templates/kathrine/images/global/buttons/_sbutton_vermais.gif new file mode 100755 index 00000000..f6764ea2 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_vermais.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_view.gif b/templates/kathrine/images/global/buttons/_sbutton_view.gif new file mode 100755 index 00000000..2aa8009f Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_view.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_viewallfansites.gif b/templates/kathrine/images/global/buttons/_sbutton_viewallfansites.gif new file mode 100755 index 00000000..efc219a7 Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_viewallfansites.gif differ diff --git a/templates/kathrine/images/global/buttons/_sbutton_viewhistory.gif b/templates/kathrine/images/global/buttons/_sbutton_viewhistory.gif new file mode 100755 index 00000000..496fbd1d Binary files /dev/null and b/templates/kathrine/images/global/buttons/_sbutton_viewhistory.gif differ diff --git a/templates/tibiacom/images/buttons/_sbutton_votenow.gif b/templates/kathrine/images/global/buttons/_sbutton_votenow.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/_sbutton_votenow.gif rename to templates/kathrine/images/global/buttons/_sbutton_votenow.gif diff --git a/templates/tibiacom/images/buttons/addnews.gif b/templates/kathrine/images/global/buttons/addnews.gif similarity index 100% rename from templates/tibiacom/images/buttons/addnews.gif rename to templates/kathrine/images/global/buttons/addnews.gif diff --git a/templates/tibiacom/images/buttons/addticker.gif b/templates/kathrine/images/global/buttons/addticker.gif similarity index 100% rename from templates/tibiacom/images/buttons/addticker.gif rename to templates/kathrine/images/global/buttons/addticker.gif diff --git a/templates/tibiacom/images/buttons/check.png b/templates/kathrine/images/global/buttons/check.png similarity index 100% rename from templates/tibiacom/images/buttons/check.png rename to templates/kathrine/images/global/buttons/check.png diff --git a/templates/tibiacom/images/buttons/empty.png b/templates/kathrine/images/global/buttons/empty.png similarity index 100% rename from templates/tibiacom/images/buttons/empty.png rename to templates/kathrine/images/global/buttons/empty.png diff --git a/templates/kathrine/images/global/buttons/mediumbutton-over.gif b/templates/kathrine/images/global/buttons/mediumbutton-over.gif new file mode 100755 index 00000000..c8bb6e6d Binary files /dev/null and b/templates/kathrine/images/global/buttons/mediumbutton-over.gif differ diff --git a/templates/kathrine/images/global/buttons/mediumbutton.gif b/templates/kathrine/images/global/buttons/mediumbutton.gif new file mode 100755 index 00000000..666034d8 Binary files /dev/null and b/templates/kathrine/images/global/buttons/mediumbutton.gif differ diff --git a/templates/kathrine/images/global/buttons/mediumbutton_createaccount.png b/templates/kathrine/images/global/buttons/mediumbutton_createaccount.png new file mode 100755 index 00000000..c4e7f80c Binary files /dev/null and b/templates/kathrine/images/global/buttons/mediumbutton_createaccount.png differ diff --git a/templates/kathrine/images/global/buttons/mediumbutton_download.png b/templates/kathrine/images/global/buttons/mediumbutton_download.png new file mode 100755 index 00000000..866d0952 Binary files /dev/null and b/templates/kathrine/images/global/buttons/mediumbutton_download.png differ diff --git a/templates/kathrine/images/global/buttons/mediumbutton_myaccount.png b/templates/kathrine/images/global/buttons/mediumbutton_myaccount.png new file mode 100755 index 00000000..617424ec Binary files /dev/null and b/templates/kathrine/images/global/buttons/mediumbutton_myaccount.png differ diff --git a/templates/kathrine/images/global/buttons/mediumbutton_playnow.png b/templates/kathrine/images/global/buttons/mediumbutton_playnow.png new file mode 100755 index 00000000..17d95cbf Binary files /dev/null and b/templates/kathrine/images/global/buttons/mediumbutton_playnow.png differ diff --git a/templates/tibiacom/images/buttons/sbutton.gif b/templates/kathrine/images/global/buttons/sbutton.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/sbutton.gif rename to templates/kathrine/images/global/buttons/sbutton.gif diff --git a/templates/tibiacom/images/buttons/sbutton_acceptinvite.png b/templates/kathrine/images/global/buttons/sbutton_acceptinvite.png similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_acceptinvite.png rename to templates/kathrine/images/global/buttons/sbutton_acceptinvite.png diff --git a/templates/tibiacom/images/buttons/sbutton_back.gif b/templates/kathrine/images/global/buttons/sbutton_back.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_back.gif rename to templates/kathrine/images/global/buttons/sbutton_back.gif diff --git a/templates/tibiacom/images/buttons/sbutton_cancel.gif b/templates/kathrine/images/global/buttons/sbutton_cancel.gif similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_cancel.gif rename to templates/kathrine/images/global/buttons/sbutton_cancel.gif diff --git a/templates/tibiacom/images/buttons/sbutton_changerank.png b/templates/kathrine/images/global/buttons/sbutton_changerank.png similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_changerank.png rename to templates/kathrine/images/global/buttons/sbutton_changerank.png diff --git a/templates/tibiacom/images/buttons/sbutton_createguild.png b/templates/kathrine/images/global/buttons/sbutton_createguild.png similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_createguild.png rename to templates/kathrine/images/global/buttons/sbutton_createguild.png diff --git a/templates/kathrine/images/global/buttons/sbutton_green.gif b/templates/kathrine/images/global/buttons/sbutton_green.gif new file mode 100755 index 00000000..a1eb28e8 Binary files /dev/null and b/templates/kathrine/images/global/buttons/sbutton_green.gif differ diff --git a/templates/kathrine/images/global/buttons/sbutton_green_over.gif b/templates/kathrine/images/global/buttons/sbutton_green_over.gif new file mode 100755 index 00000000..694b6257 Binary files /dev/null and b/templates/kathrine/images/global/buttons/sbutton_green_over.gif differ diff --git a/templates/tibiacom/images/buttons/sbutton_iagree.gif b/templates/kathrine/images/global/buttons/sbutton_iagree.gif similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_iagree.gif rename to templates/kathrine/images/global/buttons/sbutton_iagree.gif diff --git a/templates/tibiacom/images/buttons/sbutton_inviteplayer.png b/templates/kathrine/images/global/buttons/sbutton_inviteplayer.png similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_inviteplayer.png rename to templates/kathrine/images/global/buttons/sbutton_inviteplayer.png diff --git a/templates/tibiacom/images/buttons/sbutton_leaveguild.png b/templates/kathrine/images/global/buttons/sbutton_leaveguild.png similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_leaveguild.png rename to templates/kathrine/images/global/buttons/sbutton_leaveguild.png diff --git a/templates/tibiacom/images/buttons/sbutton_login.gif b/templates/kathrine/images/global/buttons/sbutton_login.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_login.gif rename to templates/kathrine/images/global/buttons/sbutton_login.gif diff --git a/templates/tibiacom/images/buttons/sbutton_manageguild.png b/templates/kathrine/images/global/buttons/sbutton_manageguild.png similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_manageguild.png rename to templates/kathrine/images/global/buttons/sbutton_manageguild.png diff --git a/templates/tibiacom/images/buttons/sbutton_over.gif b/templates/kathrine/images/global/buttons/sbutton_over.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_over.gif rename to templates/kathrine/images/global/buttons/sbutton_over.gif diff --git a/templates/kathrine/images/global/buttons/sbutton_red.gif b/templates/kathrine/images/global/buttons/sbutton_red.gif new file mode 100755 index 00000000..c3d076b4 Binary files /dev/null and b/templates/kathrine/images/global/buttons/sbutton_red.gif differ diff --git a/templates/kathrine/images/global/buttons/sbutton_red_over.gif b/templates/kathrine/images/global/buttons/sbutton_red_over.gif new file mode 100755 index 00000000..59cd60c9 Binary files /dev/null and b/templates/kathrine/images/global/buttons/sbutton_red_over.gif differ diff --git a/templates/tibiacom/images/buttons/sbutton_submit.gif b/templates/kathrine/images/global/buttons/sbutton_submit.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_submit.gif rename to templates/kathrine/images/global/buttons/sbutton_submit.gif diff --git a/templates/tibiacom/images/buttons/sbutton_view.gif b/templates/kathrine/images/global/buttons/sbutton_view.gif old mode 100644 new mode 100755 similarity index 100% rename from templates/tibiacom/images/buttons/sbutton_view.gif rename to templates/kathrine/images/global/buttons/sbutton_view.gif diff --git a/templates/kathrine/images/global/content/attentionsign.gif b/templates/kathrine/images/global/content/attentionsign.gif new file mode 100755 index 00000000..a8e6b973 Binary files /dev/null and b/templates/kathrine/images/global/content/attentionsign.gif differ diff --git a/templates/kathrine/images/global/content/back-to-top.gif b/templates/kathrine/images/global/content/back-to-top.gif new file mode 100755 index 00000000..bff16e19 Binary files /dev/null and b/templates/kathrine/images/global/content/back-to-top.gif differ diff --git a/templates/kathrine/images/global/content/border-1.gif b/templates/kathrine/images/global/content/border-1.gif new file mode 100755 index 00000000..d6dcb990 Binary files /dev/null and b/templates/kathrine/images/global/content/border-1.gif differ diff --git a/templates/kathrine/images/global/content/box-frame-edge.gif b/templates/kathrine/images/global/content/box-frame-edge.gif new file mode 100755 index 00000000..a3be3371 Binary files /dev/null and b/templates/kathrine/images/global/content/box-frame-edge.gif differ diff --git a/templates/kathrine/images/global/content/box-frame-horizontal.gif b/templates/kathrine/images/global/content/box-frame-horizontal.gif new file mode 100755 index 00000000..b32a0d96 Binary files /dev/null and b/templates/kathrine/images/global/content/box-frame-horizontal.gif differ diff --git a/templates/kathrine/images/global/content/box-frame-vertical.gif b/templates/kathrine/images/global/content/box-frame-vertical.gif new file mode 100755 index 00000000..8e68cda6 Binary files /dev/null and b/templates/kathrine/images/global/content/box-frame-vertical.gif differ diff --git a/templates/kathrine/images/global/content/bullet.gif b/templates/kathrine/images/global/content/bullet.gif new file mode 100755 index 00000000..97faf721 Binary files /dev/null and b/templates/kathrine/images/global/content/bullet.gif differ diff --git a/templates/kathrine/images/global/content/corner-bl.gif b/templates/kathrine/images/global/content/corner-bl.gif new file mode 100755 index 00000000..d3f0313e Binary files /dev/null and b/templates/kathrine/images/global/content/corner-bl.gif differ diff --git a/templates/kathrine/images/global/content/corner-br.gif b/templates/kathrine/images/global/content/corner-br.gif new file mode 100755 index 00000000..56810c34 Binary files /dev/null and b/templates/kathrine/images/global/content/corner-br.gif differ diff --git a/templates/kathrine/images/global/content/corner-tl.gif b/templates/kathrine/images/global/content/corner-tl.gif new file mode 100755 index 00000000..5771390d Binary files /dev/null and b/templates/kathrine/images/global/content/corner-tl.gif differ diff --git a/templates/kathrine/images/global/content/corner-tr.gif b/templates/kathrine/images/global/content/corner-tr.gif new file mode 100755 index 00000000..b5b9ccba Binary files /dev/null and b/templates/kathrine/images/global/content/corner-tr.gif differ diff --git a/templates/kathrine/images/global/content/headline-bracer-left.gif b/templates/kathrine/images/global/content/headline-bracer-left.gif new file mode 100755 index 00000000..42e551b3 Binary files /dev/null and b/templates/kathrine/images/global/content/headline-bracer-left.gif differ diff --git a/templates/kathrine/images/global/content/headline-bracer-right.gif b/templates/kathrine/images/global/content/headline-bracer-right.gif new file mode 100755 index 00000000..3c5d901a Binary files /dev/null and b/templates/kathrine/images/global/content/headline-bracer-right.gif differ diff --git a/templates/kathrine/images/global/content/helper-div-arrow.png b/templates/kathrine/images/global/content/helper-div-arrow.png new file mode 100755 index 00000000..3346ab31 Binary files /dev/null and b/templates/kathrine/images/global/content/helper-div-arrow.png differ diff --git a/templates/kathrine/images/global/content/info.gif b/templates/kathrine/images/global/content/info.gif new file mode 100755 index 00000000..9bb68e2f Binary files /dev/null and b/templates/kathrine/images/global/content/info.gif differ diff --git a/templates/kathrine/images/global/content/newsheadline_background.gif b/templates/kathrine/images/global/content/newsheadline_background.gif new file mode 100755 index 00000000..e011982e Binary files /dev/null and b/templates/kathrine/images/global/content/newsheadline_background.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_cipsoft_small.gif b/templates/kathrine/images/global/content/newsicon_cipsoft_small.gif new file mode 100755 index 00000000..26dacd00 Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_cipsoft_small.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_community_big.gif b/templates/kathrine/images/global/content/newsicon_community_big.gif new file mode 100755 index 00000000..5d7a454e Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_community_big.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_community_small.gif b/templates/kathrine/images/global/content/newsicon_community_small.gif new file mode 100755 index 00000000..fad06ef3 Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_community_small.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_development_big.gif b/templates/kathrine/images/global/content/newsicon_development_big.gif new file mode 100755 index 00000000..47512fac Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_development_big.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_development_small.gif b/templates/kathrine/images/global/content/newsicon_development_small.gif new file mode 100755 index 00000000..b7418840 Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_development_small.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_support_small.gif b/templates/kathrine/images/global/content/newsicon_support_small.gif new file mode 100755 index 00000000..5ffc2b42 Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_support_small.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_technical_big.gif b/templates/kathrine/images/global/content/newsicon_technical_big.gif new file mode 100755 index 00000000..2b36e957 Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_technical_big.gif differ diff --git a/templates/kathrine/images/global/content/newsicon_technical_small.gif b/templates/kathrine/images/global/content/newsicon_technical_small.gif new file mode 100755 index 00000000..284d033f Binary files /dev/null and b/templates/kathrine/images/global/content/newsicon_technical_small.gif differ diff --git a/templates/kathrine/images/global/content/order_asc.gif b/templates/kathrine/images/global/content/order_asc.gif new file mode 100755 index 00000000..c9698a5a Binary files /dev/null and b/templates/kathrine/images/global/content/order_asc.gif differ diff --git a/templates/kathrine/images/global/content/order_desc.gif b/templates/kathrine/images/global/content/order_desc.gif new file mode 100755 index 00000000..4a764bd5 Binary files /dev/null and b/templates/kathrine/images/global/content/order_desc.gif differ diff --git a/templates/kathrine/images/global/content/ornament.gif b/templates/kathrine/images/global/content/ornament.gif new file mode 100755 index 00000000..dfffe7b7 Binary files /dev/null and b/templates/kathrine/images/global/content/ornament.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/payment_accepted.gif b/templates/kathrine/images/global/content/progressbar/payment_accepted.gif new file mode 100755 index 00000000..703f255e Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/payment_accepted.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-0-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-0-blue.gif new file mode 100755 index 00000000..fe2f5454 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-0-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-0-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-0-green.gif new file mode 100755 index 00000000..e896a8b9 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-0-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-1-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-1-blue.gif new file mode 100755 index 00000000..21ce3718 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-1-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-1-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-1-green.gif new file mode 100755 index 00000000..3ee82855 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-1-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-2-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-2-blue.gif new file mode 100755 index 00000000..8e0aed11 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-2-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-2-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-2-green.gif new file mode 100755 index 00000000..4cbfe99a Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-2-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-3-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-3-blue.gif new file mode 100755 index 00000000..2442b7f0 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-3-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-3-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-3-green.gif new file mode 100755 index 00000000..6f31c9a4 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-3-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-4-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-4-blue.gif new file mode 100755 index 00000000..6fedad23 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-4-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-icon-4-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-4-green.gif new file mode 100755 index 00000000..aa8f1223 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-icon-4-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-tube-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-blue.gif new file mode 100755 index 00000000..e197e91e Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-tube-green-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-green-blue.gif new file mode 100755 index 00000000..c5c40ea6 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-green-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-tube-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-green.gif new file mode 100755 index 00000000..ff9bd7d2 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-tube-left-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-left-blue.gif new file mode 100755 index 00000000..c36a4f3a Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-left-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-tube-left-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-left-green.gif new file mode 100755 index 00000000..465ac2c5 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-left-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-tube-right-blue.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-right-blue.gif new file mode 100755 index 00000000..8dce00c5 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-right-blue.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/progress-bar-tube-right-green.gif b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-right-green.gif new file mode 100755 index 00000000..1f77a08a Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/progress-bar-tube-right-green.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/stonebar-center.gif b/templates/kathrine/images/global/content/progressbar/stonebar-center.gif new file mode 100755 index 00000000..456b42cf Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/stonebar-center.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/stonebar-left-end.gif b/templates/kathrine/images/global/content/progressbar/stonebar-left-end.gif new file mode 100755 index 00000000..e5e3a2fa Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/stonebar-left-end.gif differ diff --git a/templates/kathrine/images/global/content/progressbar/stonebar-right-end.gif b/templates/kathrine/images/global/content/progressbar/stonebar-right-end.gif new file mode 100755 index 00000000..7ea962b6 Binary files /dev/null and b/templates/kathrine/images/global/content/progressbar/stonebar-right-end.gif differ diff --git a/templates/kathrine/images/global/content/scroll.gif b/templates/kathrine/images/global/content/scroll.gif new file mode 100755 index 00000000..9fb95dbd Binary files /dev/null and b/templates/kathrine/images/global/content/scroll.gif differ diff --git a/templates/kathrine/images/global/content/stonebar-center.gif b/templates/kathrine/images/global/content/stonebar-center.gif new file mode 100755 index 00000000..456b42cf Binary files /dev/null and b/templates/kathrine/images/global/content/stonebar-center.gif differ diff --git a/templates/kathrine/images/global/content/stonebar-left-end.gif b/templates/kathrine/images/global/content/stonebar-left-end.gif new file mode 100755 index 00000000..e5e3a2fa Binary files /dev/null and b/templates/kathrine/images/global/content/stonebar-left-end.gif differ diff --git a/templates/kathrine/images/global/content/stonebar-right-end.gif b/templates/kathrine/images/global/content/stonebar-right-end.gif new file mode 100755 index 00000000..7ea962b6 Binary files /dev/null and b/templates/kathrine/images/global/content/stonebar-right-end.gif differ diff --git a/templates/kathrine/images/global/content/table-headline-border.gif b/templates/kathrine/images/global/content/table-headline-border.gif new file mode 100755 index 00000000..b32a0d96 Binary files /dev/null and b/templates/kathrine/images/global/content/table-headline-border.gif differ diff --git a/templates/kathrine/images/global/content/table-shadow-bl.gif b/templates/kathrine/images/global/content/table-shadow-bl.gif new file mode 100755 index 00000000..89ac2c7f Binary files /dev/null and b/templates/kathrine/images/global/content/table-shadow-bl.gif differ diff --git a/templates/kathrine/images/global/content/table-shadow-bm.gif b/templates/kathrine/images/global/content/table-shadow-bm.gif new file mode 100755 index 00000000..5d774cc1 Binary files /dev/null and b/templates/kathrine/images/global/content/table-shadow-bm.gif differ diff --git a/templates/kathrine/images/global/content/table-shadow-br.gif b/templates/kathrine/images/global/content/table-shadow-br.gif new file mode 100755 index 00000000..28dcf6cd Binary files /dev/null and b/templates/kathrine/images/global/content/table-shadow-br.gif differ diff --git a/templates/kathrine/images/global/content/table-shadow-rm.gif b/templates/kathrine/images/global/content/table-shadow-rm.gif new file mode 100755 index 00000000..fd9406d4 Binary files /dev/null and b/templates/kathrine/images/global/content/table-shadow-rm.gif differ diff --git a/templates/kathrine/images/global/content/table-shadow-rt.gif b/templates/kathrine/images/global/content/table-shadow-rt.gif new file mode 100755 index 00000000..2d23241d Binary files /dev/null and b/templates/kathrine/images/global/content/table-shadow-rt.gif differ diff --git a/templates/kathrine/images/global/content/title-background-green.gif b/templates/kathrine/images/global/content/title-background-green.gif new file mode 100755 index 00000000..6c5d0683 Binary files /dev/null and b/templates/kathrine/images/global/content/title-background-green.gif differ diff --git a/templates/kathrine/images/global/forum/button_newtopic_off.gif b/templates/kathrine/images/global/forum/button_newtopic_off.gif new file mode 100755 index 00000000..7e0bff4c Binary files /dev/null and b/templates/kathrine/images/global/forum/button_newtopic_off.gif differ diff --git a/templates/kathrine/images/global/forum/cip_post_border_h.jpg b/templates/kathrine/images/global/forum/cip_post_border_h.jpg new file mode 100755 index 00000000..6640277d Binary files /dev/null and b/templates/kathrine/images/global/forum/cip_post_border_h.jpg differ diff --git a/templates/kathrine/images/global/forum/cip_post_border_ll.jpg b/templates/kathrine/images/global/forum/cip_post_border_ll.jpg new file mode 100755 index 00000000..7d435e8b Binary files /dev/null and b/templates/kathrine/images/global/forum/cip_post_border_ll.jpg differ diff --git a/templates/kathrine/images/global/forum/cip_post_border_lu.jpg b/templates/kathrine/images/global/forum/cip_post_border_lu.jpg new file mode 100755 index 00000000..08f33870 Binary files /dev/null and b/templates/kathrine/images/global/forum/cip_post_border_lu.jpg differ diff --git a/templates/kathrine/images/global/forum/cip_post_border_rl.jpg b/templates/kathrine/images/global/forum/cip_post_border_rl.jpg new file mode 100755 index 00000000..24fd0b52 Binary files /dev/null and b/templates/kathrine/images/global/forum/cip_post_border_rl.jpg differ diff --git a/templates/kathrine/images/global/forum/cip_post_border_ru.jpg b/templates/kathrine/images/global/forum/cip_post_border_ru.jpg new file mode 100755 index 00000000..860c84cb Binary files /dev/null and b/templates/kathrine/images/global/forum/cip_post_border_ru.jpg differ diff --git a/templates/kathrine/images/global/forum/cip_post_border_v.jpg b/templates/kathrine/images/global/forum/cip_post_border_v.jpg new file mode 100755 index 00000000..c54c48d6 Binary files /dev/null and b/templates/kathrine/images/global/forum/cip_post_border_v.jpg differ diff --git a/templates/kathrine/images/global/forum/cip_post_icon.gif b/templates/kathrine/images/global/forum/cip_post_icon.gif new file mode 100755 index 00000000..fb95cab6 Binary files /dev/null and b/templates/kathrine/images/global/forum/cip_post_icon.gif differ diff --git a/templates/kathrine/images/global/forum/icons/11.gif b/templates/kathrine/images/global/forum/icons/11.gif new file mode 100755 index 00000000..59bdca5a Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/11.gif differ diff --git a/templates/kathrine/images/global/forum/icons/12.gif b/templates/kathrine/images/global/forum/icons/12.gif new file mode 100755 index 00000000..3fb84b90 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/12.gif differ diff --git a/templates/kathrine/images/global/forum/icons/13.gif b/templates/kathrine/images/global/forum/icons/13.gif new file mode 100755 index 00000000..993ef075 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/13.gif differ diff --git a/templates/kathrine/images/global/forum/icons/14.gif b/templates/kathrine/images/global/forum/icons/14.gif new file mode 100755 index 00000000..0df10130 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/14.gif differ diff --git a/templates/kathrine/images/global/forum/icons/15.gif b/templates/kathrine/images/global/forum/icons/15.gif new file mode 100755 index 00000000..2a9fe288 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/15.gif differ diff --git a/templates/kathrine/images/global/forum/icons/16.gif b/templates/kathrine/images/global/forum/icons/16.gif new file mode 100755 index 00000000..ac97d895 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/16.gif differ diff --git a/templates/kathrine/images/global/forum/icons/17.gif b/templates/kathrine/images/global/forum/icons/17.gif new file mode 100755 index 00000000..8d22e981 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/17.gif differ diff --git a/templates/kathrine/images/global/forum/icons/18.gif b/templates/kathrine/images/global/forum/icons/18.gif new file mode 100755 index 00000000..f41e41a7 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/18.gif differ diff --git a/templates/kathrine/images/global/forum/icons/19.gif b/templates/kathrine/images/global/forum/icons/19.gif new file mode 100755 index 00000000..01542349 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/19.gif differ diff --git a/templates/kathrine/images/global/forum/icons/20.gif b/templates/kathrine/images/global/forum/icons/20.gif new file mode 100755 index 00000000..d000ca5a Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/20.gif differ diff --git a/templates/kathrine/images/global/forum/icons/21.gif b/templates/kathrine/images/global/forum/icons/21.gif new file mode 100755 index 00000000..a4910467 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/21.gif differ diff --git a/templates/kathrine/images/global/forum/icons/22.gif b/templates/kathrine/images/global/forum/icons/22.gif new file mode 100755 index 00000000..5174ce47 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/22.gif differ diff --git a/templates/kathrine/images/global/forum/icons/23.gif b/templates/kathrine/images/global/forum/icons/23.gif new file mode 100755 index 00000000..04b7e291 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/23.gif differ diff --git a/templates/kathrine/images/global/forum/icons/24.gif b/templates/kathrine/images/global/forum/icons/24.gif new file mode 100755 index 00000000..fcdc4d97 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/24.gif differ diff --git a/templates/kathrine/images/global/forum/icons/25.gif b/templates/kathrine/images/global/forum/icons/25.gif new file mode 100755 index 00000000..e00161ac Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/25.gif differ diff --git a/templates/kathrine/images/global/forum/icons/26.gif b/templates/kathrine/images/global/forum/icons/26.gif new file mode 100755 index 00000000..148f11d0 Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/26.gif differ diff --git a/templates/kathrine/images/global/forum/icons/27.gif b/templates/kathrine/images/global/forum/icons/27.gif new file mode 100755 index 00000000..154351fa Binary files /dev/null and b/templates/kathrine/images/global/forum/icons/27.gif differ diff --git a/templates/kathrine/images/global/forum/logo_closed.gif b/templates/kathrine/images/global/forum/logo_closed.gif new file mode 100755 index 00000000..548e41e8 Binary files /dev/null and b/templates/kathrine/images/global/forum/logo_closed.gif differ diff --git a/templates/kathrine/images/global/forum/logo_hot.gif b/templates/kathrine/images/global/forum/logo_hot.gif new file mode 100755 index 00000000..c98686f2 Binary files /dev/null and b/templates/kathrine/images/global/forum/logo_hot.gif differ diff --git a/templates/kathrine/images/global/forum/logo_hotnew.gif b/templates/kathrine/images/global/forum/logo_hotnew.gif new file mode 100755 index 00000000..5a13fcd8 Binary files /dev/null and b/templates/kathrine/images/global/forum/logo_hotnew.gif differ diff --git a/templates/kathrine/images/global/forum/logo_multipage.gif b/templates/kathrine/images/global/forum/logo_multipage.gif new file mode 100755 index 00000000..c7f1aac1 Binary files /dev/null and b/templates/kathrine/images/global/forum/logo_multipage.gif differ diff --git a/templates/kathrine/images/global/forum/logo_new.gif b/templates/kathrine/images/global/forum/logo_new.gif new file mode 100755 index 00000000..b7e67eb0 Binary files /dev/null and b/templates/kathrine/images/global/forum/logo_new.gif differ diff --git a/templates/kathrine/images/global/forum/logo_oldpost.gif b/templates/kathrine/images/global/forum/logo_oldpost.gif new file mode 100755 index 00000000..083f001b Binary files /dev/null and b/templates/kathrine/images/global/forum/logo_oldpost.gif differ diff --git a/templates/kathrine/images/global/forum/logo_sticky.gif b/templates/kathrine/images/global/forum/logo_sticky.gif new file mode 100755 index 00000000..a588e3ab Binary files /dev/null and b/templates/kathrine/images/global/forum/logo_sticky.gif differ diff --git a/templates/kathrine/images/global/forum/smile/1.gif b/templates/kathrine/images/global/forum/smile/1.gif new file mode 100755 index 00000000..59bdca5a Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/1.gif differ diff --git a/templates/kathrine/images/global/forum/smile/10.gif b/templates/kathrine/images/global/forum/smile/10.gif new file mode 100755 index 00000000..5174ce47 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/10.gif differ diff --git a/templates/kathrine/images/global/forum/smile/2.gif b/templates/kathrine/images/global/forum/smile/2.gif new file mode 100755 index 00000000..3fb84b90 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/2.gif differ diff --git a/templates/kathrine/images/global/forum/smile/3.gif b/templates/kathrine/images/global/forum/smile/3.gif new file mode 100755 index 00000000..993ef075 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/3.gif differ diff --git a/templates/kathrine/images/global/forum/smile/4.gif b/templates/kathrine/images/global/forum/smile/4.gif new file mode 100755 index 00000000..ac97d895 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/4.gif differ diff --git a/templates/kathrine/images/global/forum/smile/5.gif b/templates/kathrine/images/global/forum/smile/5.gif new file mode 100755 index 00000000..8d22e981 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/5.gif differ diff --git a/templates/kathrine/images/global/forum/smile/6.gif b/templates/kathrine/images/global/forum/smile/6.gif new file mode 100755 index 00000000..f41e41a7 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/6.gif differ diff --git a/templates/kathrine/images/global/forum/smile/7.gif b/templates/kathrine/images/global/forum/smile/7.gif new file mode 100755 index 00000000..01542349 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/7.gif differ diff --git a/templates/kathrine/images/global/forum/smile/8.gif b/templates/kathrine/images/global/forum/smile/8.gif new file mode 100755 index 00000000..d000ca5a Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/8.gif differ diff --git a/templates/kathrine/images/global/forum/smile/9.gif b/templates/kathrine/images/global/forum/smile/9.gif new file mode 100755 index 00000000..a4910467 Binary files /dev/null and b/templates/kathrine/images/global/forum/smile/9.gif differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon-114x114.png b/templates/kathrine/images/global/general/apple-touch-icon-114x114.png new file mode 100755 index 00000000..4acb902c Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon-114x114.png differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon-120x120.png b/templates/kathrine/images/global/general/apple-touch-icon-120x120.png new file mode 100755 index 00000000..14b91f9e Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon-120x120.png differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon-144x144.png b/templates/kathrine/images/global/general/apple-touch-icon-144x144.png new file mode 100755 index 00000000..dc0a7536 Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon-144x144.png differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon-152x152.png b/templates/kathrine/images/global/general/apple-touch-icon-152x152.png new file mode 100755 index 00000000..28a02775 Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon-152x152.png differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon-72x72.png b/templates/kathrine/images/global/general/apple-touch-icon-72x72.png new file mode 100755 index 00000000..9dde102e Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon-72x72.png differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon-76x76.png b/templates/kathrine/images/global/general/apple-touch-icon-76x76.png new file mode 100755 index 00000000..58f24b27 Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon-76x76.png differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon-precomposed.png b/templates/kathrine/images/global/general/apple-touch-icon-precomposed.png new file mode 100755 index 00000000..ab2da3e8 Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon-precomposed.png differ diff --git a/templates/kathrine/images/global/general/apple-touch-icon.png b/templates/kathrine/images/global/general/apple-touch-icon.png new file mode 100755 index 00000000..b229a686 Binary files /dev/null and b/templates/kathrine/images/global/general/apple-touch-icon.png differ diff --git a/templates/kathrine/images/global/general/blank.gif b/templates/kathrine/images/global/general/blank.gif new file mode 100755 index 00000000..e0144fbc Binary files /dev/null and b/templates/kathrine/images/global/general/blank.gif differ diff --git a/templates/kathrine/images/global/general/box-bottom.gif b/templates/kathrine/images/global/general/box-bottom.gif new file mode 100755 index 00000000..e9e0aa0e Binary files /dev/null and b/templates/kathrine/images/global/general/box-bottom.gif differ diff --git a/templates/kathrine/images/global/general/box-top.gif b/templates/kathrine/images/global/general/box-top.gif new file mode 100755 index 00000000..ba0e821f Binary files /dev/null and b/templates/kathrine/images/global/general/box-top.gif differ diff --git a/templates/kathrine/images/global/general/chain.gif b/templates/kathrine/images/global/general/chain.gif new file mode 100755 index 00000000..ff3120f8 Binary files /dev/null and b/templates/kathrine/images/global/general/chain.gif differ diff --git a/templates/kathrine/images/global/general/favicon.ico b/templates/kathrine/images/global/general/favicon.ico new file mode 100755 index 00000000..26e19005 Binary files /dev/null and b/templates/kathrine/images/global/general/favicon.ico differ diff --git a/templates/kathrine/images/global/general/hide.gif b/templates/kathrine/images/global/general/hide.gif new file mode 100755 index 00000000..fe35728e Binary files /dev/null and b/templates/kathrine/images/global/general/hide.gif differ diff --git a/templates/kathrine/images/global/general/minus.gif b/templates/kathrine/images/global/general/minus.gif new file mode 100755 index 00000000..ee030eb2 Binary files /dev/null and b/templates/kathrine/images/global/general/minus.gif differ diff --git a/templates/kathrine/images/global/general/nok.gif b/templates/kathrine/images/global/general/nok.gif new file mode 100755 index 00000000..4b8f2c23 Binary files /dev/null and b/templates/kathrine/images/global/general/nok.gif differ diff --git a/templates/kathrine/images/global/general/ok.gif b/templates/kathrine/images/global/general/ok.gif new file mode 100755 index 00000000..aaa36a95 Binary files /dev/null and b/templates/kathrine/images/global/general/ok.gif differ diff --git a/templates/kathrine/images/global/general/plus.gif b/templates/kathrine/images/global/general/plus.gif new file mode 100755 index 00000000..2346f79a Binary files /dev/null and b/templates/kathrine/images/global/general/plus.gif differ diff --git a/templates/kathrine/images/global/general/show.gif b/templates/kathrine/images/global/general/show.gif new file mode 100755 index 00000000..a27a1748 Binary files /dev/null and b/templates/kathrine/images/global/general/show.gif differ diff --git a/templates/kathrine/images/global/header/background-artwork.jpg b/templates/kathrine/images/global/header/background-artwork.jpg new file mode 100755 index 00000000..10294d3e Binary files /dev/null and b/templates/kathrine/images/global/header/background-artwork.jpg differ diff --git a/templates/kathrine/images/global/header/dragonlord.gif b/templates/kathrine/images/global/header/dragonlord.gif new file mode 100755 index 00000000..99f5ff7f Binary files /dev/null and b/templates/kathrine/images/global/header/dragonlord.gif differ diff --git a/templates/kathrine/images/global/header/pedestal-and-online.gif b/templates/kathrine/images/global/header/pedestal-and-online.gif new file mode 100755 index 00000000..8955d2d4 Binary files /dev/null and b/templates/kathrine/images/global/header/pedestal-and-online.gif differ diff --git a/templates/kathrine/images/global/header/tibia-logo-artwork-top.gif b/templates/kathrine/images/global/header/tibia-logo-artwork-top.gif new file mode 100755 index 00000000..935ca3bd Binary files /dev/null and b/templates/kathrine/images/global/header/tibia-logo-artwork-top.gif differ diff --git a/templates/kathrine/images/global/loginbox/loginbox-font-create-account-over.gif b/templates/kathrine/images/global/loginbox/loginbox-font-create-account-over.gif new file mode 100755 index 00000000..5d53274b Binary files /dev/null and b/templates/kathrine/images/global/loginbox/loginbox-font-create-account-over.gif differ diff --git a/templates/kathrine/images/global/loginbox/loginbox-font-create-account.gif b/templates/kathrine/images/global/loginbox/loginbox-font-create-account.gif new file mode 100755 index 00000000..bc707ef7 Binary files /dev/null and b/templates/kathrine/images/global/loginbox/loginbox-font-create-account.gif differ diff --git a/templates/kathrine/images/global/loginbox/loginbox-font-logout-over.gif b/templates/kathrine/images/global/loginbox/loginbox-font-logout-over.gif new file mode 100755 index 00000000..c994f505 Binary files /dev/null and b/templates/kathrine/images/global/loginbox/loginbox-font-logout-over.gif differ diff --git a/templates/kathrine/images/global/loginbox/loginbox-font-logout.gif b/templates/kathrine/images/global/loginbox/loginbox-font-logout.gif new file mode 100755 index 00000000..0873ce1d Binary files /dev/null and b/templates/kathrine/images/global/loginbox/loginbox-font-logout.gif differ diff --git a/templates/kathrine/images/global/loginbox/loginbox-textfield-background.gif b/templates/kathrine/images/global/loginbox/loginbox-textfield-background.gif new file mode 100755 index 00000000..0c4336e8 Binary files /dev/null and b/templates/kathrine/images/global/loginbox/loginbox-textfield-background.gif differ diff --git a/templates/kathrine/images/global/menu/button-background-over.gif b/templates/kathrine/images/global/menu/button-background-over.gif new file mode 100755 index 00000000..313691b8 Binary files /dev/null and b/templates/kathrine/images/global/menu/button-background-over.gif differ diff --git a/templates/kathrine/images/global/menu/button-background.gif b/templates/kathrine/images/global/menu/button-background.gif new file mode 100755 index 00000000..852701fe Binary files /dev/null and b/templates/kathrine/images/global/menu/button-background.gif differ diff --git a/templates/kathrine/images/global/menu/green-light.gif b/templates/kathrine/images/global/menu/green-light.gif new file mode 100755 index 00000000..e73260c0 Binary files /dev/null and b/templates/kathrine/images/global/menu/green-light.gif differ diff --git a/templates/kathrine/images/global/menu/icon-account.gif b/templates/kathrine/images/global/menu/icon-account.gif new file mode 100755 index 00000000..992a31ba Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-account.gif differ diff --git a/templates/kathrine/images/global/menu/icon-activesubmenu.gif b/templates/kathrine/images/global/menu/icon-activesubmenu.gif new file mode 100755 index 00000000..622a468a Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-activesubmenu.gif differ diff --git a/templates/kathrine/images/global/menu/icon-community.gif b/templates/kathrine/images/global/menu/icon-community.gif new file mode 100755 index 00000000..f33c7009 Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-community.gif differ diff --git a/templates/kathrine/images/global/menu/icon-forum.gif b/templates/kathrine/images/global/menu/icon-forum.gif new file mode 100755 index 00000000..e397d554 Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-forum.gif differ diff --git a/templates/kathrine/images/global/menu/icon-library.gif b/templates/kathrine/images/global/menu/icon-library.gif new file mode 100755 index 00000000..d99f8b7a Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-library.gif differ diff --git a/templates/kathrine/images/global/menu/icon-news.gif b/templates/kathrine/images/global/menu/icon-news.gif new file mode 100755 index 00000000..b22c1129 Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-news.gif differ diff --git a/templates/kathrine/images/global/menu/icon-shops.gif b/templates/kathrine/images/global/menu/icon-shops.gif new file mode 100755 index 00000000..054f0300 Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-shops.gif differ diff --git a/templates/kathrine/images/global/menu/icon-support.gif b/templates/kathrine/images/global/menu/icon-support.gif new file mode 100755 index 00000000..6a95a434 Binary files /dev/null and b/templates/kathrine/images/global/menu/icon-support.gif differ diff --git a/templates/kathrine/images/global/menu/label-account.gif b/templates/kathrine/images/global/menu/label-account.gif new file mode 100755 index 00000000..eb6f167b Binary files /dev/null and b/templates/kathrine/images/global/menu/label-account.gif differ diff --git a/templates/kathrine/images/global/menu/label-community.gif b/templates/kathrine/images/global/menu/label-community.gif new file mode 100755 index 00000000..74aba4aa Binary files /dev/null and b/templates/kathrine/images/global/menu/label-community.gif differ diff --git a/templates/kathrine/images/global/menu/label-forum.gif b/templates/kathrine/images/global/menu/label-forum.gif new file mode 100755 index 00000000..4034c89e Binary files /dev/null and b/templates/kathrine/images/global/menu/label-forum.gif differ diff --git a/templates/kathrine/images/global/menu/label-library.gif b/templates/kathrine/images/global/menu/label-library.gif new file mode 100755 index 00000000..ed0aab96 Binary files /dev/null and b/templates/kathrine/images/global/menu/label-library.gif differ diff --git a/templates/kathrine/images/global/menu/label-news.gif b/templates/kathrine/images/global/menu/label-news.gif new file mode 100755 index 00000000..87294350 Binary files /dev/null and b/templates/kathrine/images/global/menu/label-news.gif differ diff --git a/templates/kathrine/images/global/menu/label-shops.gif b/templates/kathrine/images/global/menu/label-shops.gif new file mode 100755 index 00000000..cad987b2 Binary files /dev/null and b/templates/kathrine/images/global/menu/label-shops.gif differ diff --git a/templates/kathrine/images/global/menu/label-support.gif b/templates/kathrine/images/global/menu/label-support.gif new file mode 100755 index 00000000..e73b0762 Binary files /dev/null and b/templates/kathrine/images/global/menu/label-support.gif differ diff --git a/templates/kathrine/images/global/themeboxes/current-poll/currentpollbox.gif b/templates/kathrine/images/global/themeboxes/current-poll/currentpollbox.gif new file mode 100755 index 00000000..9c0878c2 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/current-poll/currentpollbox.gif differ diff --git a/templates/kathrine/images/global/themeboxes/fansites/border_promoted.gif b/templates/kathrine/images/global/themeboxes/fansites/border_promoted.gif new file mode 100755 index 00000000..7af9c769 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/fansites/border_promoted.gif differ diff --git a/templates/kathrine/images/global/themeboxes/fansites/fansites_themebox.gif b/templates/kathrine/images/global/themeboxes/fansites/fansites_themebox.gif new file mode 100755 index 00000000..afce5e94 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/fansites/fansites_themebox.gif differ diff --git a/templates/kathrine/images/global/themeboxes/networks/networksbox.png b/templates/kathrine/images/global/themeboxes/networks/networksbox.png new file mode 100755 index 00000000..ae1867a1 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/networks/networksbox.png differ diff --git a/templates/kathrine/images/global/themeboxes/networks/tibia-facebook-page-logo.png b/templates/kathrine/images/global/themeboxes/networks/tibia-facebook-page-logo.png new file mode 100755 index 00000000..c93cfeea Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/networks/tibia-facebook-page-logo.png differ diff --git a/templates/kathrine/images/global/themeboxes/premium/premiumbox.gif b/templates/kathrine/images/global/themeboxes/premium/premiumbox.gif new file mode 100755 index 00000000..3c58eabe Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/premium/premiumbox.gif differ diff --git a/templates/kathrine/images/global/themeboxes/screenshot/frame.png b/templates/kathrine/images/global/themeboxes/screenshot/frame.png new file mode 100755 index 00000000..8914f357 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/screenshot/frame.png differ diff --git a/templates/kathrine/images/global/themeboxes/screenshot/screenshotbox.gif b/templates/kathrine/images/global/themeboxes/screenshot/screenshotbox.gif new file mode 100755 index 00000000..1589bf14 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/screenshot/screenshotbox.gif differ diff --git a/templates/kathrine/images/global/themeboxes/serverinfo/serverinfo.gif b/templates/kathrine/images/global/themeboxes/serverinfo/serverinfo.gif new file mode 100755 index 00000000..45713a51 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/serverinfo/serverinfo.gif differ diff --git a/templates/kathrine/images/global/themeboxes/serverinfo/serverinfobox.gif b/templates/kathrine/images/global/themeboxes/serverinfo/serverinfobox.gif new file mode 100755 index 00000000..df029fe5 Binary files /dev/null and b/templates/kathrine/images/global/themeboxes/serverinfo/serverinfobox.gif differ diff --git a/templates/tibiacom/account.login.html.twig b/templates/tibiacom/account.login.html.twig index cf40a0de..caa81fbe 100644 --- a/templates/tibiacom/account.login.html.twig +++ b/templates/tibiacom/account.login.html.twig @@ -45,17 +45,11 @@
-
- -
-
+ {{ include('buttons.login.html.twig') }}
-
- -
-
+ {{ include('buttons.account_lost.html.twig') }}
diff --git a/templates/tibiacom/account.management.html.twig b/templates/tibiacom/account.management.html.twig index e6971358..86dc8e99 100644 --- a/templates/tibiacom/account.management.html.twig +++ b/templates/tibiacom/account.management.html.twig @@ -14,9 +14,7 @@
-
-
-
+ {{ include('buttons.logout.html.twig') }}
@@ -64,9 +62,7 @@
-
-
-
+ {{ include('buttons.register_account.html.twig') }}
@@ -101,9 +97,7 @@
-
-
-
+ {{ include('buttons.edit.html.twig') }}
@@ -197,8 +191,7 @@
-
-
+ {{ include('buttons.change_password.html.twig') }}
@@ -211,8 +204,7 @@ -
-
+ {{ include('buttons.change_email.html.twig') }} @@ -226,8 +218,7 @@
-
-
+ {{ include('buttons.register_account.html.twig') }}
@@ -298,8 +289,7 @@
-
-
+ {{ include('buttons.edit.html.twig') }}
@@ -471,9 +461,8 @@ - @@ -484,8 +473,8 @@
-
-
+
+ {{ include('buttons.create_character.html.twig') }}
- @@ -497,8 +486,8 @@
-
+
+ {{ include('buttons.change_name.html.twig') }}
- @@ -511,8 +500,7 @@ diff --git a/templates/tibiacom/buttons.account_lost.html.twig b/templates/tibiacom/buttons.account_lost.html.twig new file mode 100644 index 00000000..07b27b1e --- /dev/null +++ b/templates/tibiacom/buttons.account_lost.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Account lost?' %} +{% set button_image = '_sbutton_accountlost' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.back.html.twig b/templates/tibiacom/buttons.back.html.twig new file mode 100644 index 00000000..9eda6066 --- /dev/null +++ b/templates/tibiacom/buttons.back.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Back' %} +{% set button_image = '_sbutton_back' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.base.html.twig b/templates/tibiacom/buttons.base.html.twig new file mode 100644 index 00000000..b94ec170 --- /dev/null +++ b/templates/tibiacom/buttons.base.html.twig @@ -0,0 +1,8 @@ +{% spaceless %} +
+
+
+ +
+
+{% endspaceless %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.cancel.html.twig b/templates/tibiacom/buttons.cancel.html.twig new file mode 100644 index 00000000..3128aad9 --- /dev/null +++ b/templates/tibiacom/buttons.cancel.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Cancel' %} +{% set button_image = '_sbutton_cancel' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.change_email.html.twig b/templates/tibiacom/buttons.change_email.html.twig new file mode 100644 index 00000000..ef4d8c60 --- /dev/null +++ b/templates/tibiacom/buttons.change_email.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Change Email' %} +{% set button_image = '_sbutton_changeemail' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.change_name.html.twig b/templates/tibiacom/buttons.change_name.html.twig new file mode 100644 index 00000000..a1c8b044 --- /dev/null +++ b/templates/tibiacom/buttons.change_name.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Change Name' %} +{% set button_image = '_sbutton_change_name' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.change_password.html.twig b/templates/tibiacom/buttons.change_password.html.twig new file mode 100644 index 00000000..bbd02224 --- /dev/null +++ b/templates/tibiacom/buttons.change_password.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Change Password' %} +{% set button_image = '_sbutton_changepassword' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.change_sex.html.twig b/templates/tibiacom/buttons.change_sex.html.twig new file mode 100644 index 00000000..6c961694 --- /dev/null +++ b/templates/tibiacom/buttons.change_sex.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Change Sex' %} +{% set button_image = '_sbutton_change_sex' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.create_character.html.twig b/templates/tibiacom/buttons.create_character.html.twig new file mode 100644 index 00000000..20f3e053 --- /dev/null +++ b/templates/tibiacom/buttons.create_character.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Create Character' %} +{% set button_image = '_sbutton_createcharacter' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.delete_character.html.twig b/templates/tibiacom/buttons.delete_character.html.twig new file mode 100644 index 00000000..cfcbfe2b --- /dev/null +++ b/templates/tibiacom/buttons.delete_character.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Delete Character' %} +{% set button_image = '_sbutton_deletecharacter' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.edit.html.twig b/templates/tibiacom/buttons.edit.html.twig new file mode 100644 index 00000000..53f7b409 --- /dev/null +++ b/templates/tibiacom/buttons.edit.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Edit' %} +{% set button_image = '_sbutton_edit' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.login.html.twig b/templates/tibiacom/buttons.login.html.twig new file mode 100644 index 00000000..ae8642e1 --- /dev/null +++ b/templates/tibiacom/buttons.login.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Login' %} +{% set button_image = '_sbutton_login' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.logout.html.twig b/templates/tibiacom/buttons.logout.html.twig new file mode 100644 index 00000000..fccaf69d --- /dev/null +++ b/templates/tibiacom/buttons.logout.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Logout' %} +{% set button_image = '_sbutton_logout' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.register_account.html.twig b/templates/tibiacom/buttons.register_account.html.twig new file mode 100644 index 00000000..a77bcfe5 --- /dev/null +++ b/templates/tibiacom/buttons.register_account.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Register Account' %} +{% set button_image = '_sbutton_registeraccount' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/buttons.submit.html.twig b/templates/tibiacom/buttons.submit.html.twig new file mode 100644 index 00000000..25bf7d84 --- /dev/null +++ b/templates/tibiacom/buttons.submit.html.twig @@ -0,0 +1,3 @@ +{% set button_name = 'Submit' %} +{% set button_image = '_sbutton_submit' %} +{% include('buttons.base.html.twig') %} \ No newline at end of file diff --git a/templates/tibiacom/images/global/buttons/_sbutton_change_name.gif b/templates/tibiacom/images/global/buttons/_sbutton_change_name.gif new file mode 100644 index 00000000..026844d1 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/_sbutton_change_name.gif differ diff --git a/templates/tibiacom/images/global/buttons/_sbutton_change_sex.gif b/templates/tibiacom/images/global/buttons/_sbutton_change_sex.gif new file mode 100644 index 00000000..01b371ec Binary files /dev/null and b/templates/tibiacom/images/global/buttons/_sbutton_change_sex.gif differ diff --git a/templates/tibiacom/images/global/buttons/_sbutton_deletecharacter.gif b/templates/tibiacom/images/global/buttons/_sbutton_deletecharacter.gif new file mode 100644 index 00000000..52975635 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/_sbutton_deletecharacter.gif differ diff --git a/templates/tibiacom/images/global/buttons/_sbutton_jointibia.gif b/templates/tibiacom/images/global/buttons/_sbutton_jointibia.gif new file mode 100644 index 00000000..a4e85c45 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/_sbutton_jointibia.gif differ diff --git a/templates/tibiacom/images/global/buttons/_sbutton_myaccount.gif b/templates/tibiacom/images/global/buttons/_sbutton_myaccount.gif new file mode 100644 index 00000000..dc16c8eb Binary files /dev/null and b/templates/tibiacom/images/global/buttons/_sbutton_myaccount.gif differ diff --git a/templates/tibiacom/images/global/buttons/addnews.gif b/templates/tibiacom/images/global/buttons/addnews.gif new file mode 100644 index 00000000..d0a60ae5 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/addnews.gif differ diff --git a/templates/tibiacom/images/global/buttons/addticker.gif b/templates/tibiacom/images/global/buttons/addticker.gif new file mode 100644 index 00000000..0a706866 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/addticker.gif differ diff --git a/templates/tibiacom/images/global/buttons/check.png b/templates/tibiacom/images/global/buttons/check.png new file mode 100644 index 00000000..fe34c521 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/check.png differ diff --git a/templates/tibiacom/images/global/buttons/empty.png b/templates/tibiacom/images/global/buttons/empty.png new file mode 100644 index 00000000..fbd1fcef Binary files /dev/null and b/templates/tibiacom/images/global/buttons/empty.png differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_acceptinvite.png b/templates/tibiacom/images/global/buttons/sbutton_acceptinvite.png new file mode 100644 index 00000000..1f8f1796 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_acceptinvite.png differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_cancel.gif b/templates/tibiacom/images/global/buttons/sbutton_cancel.gif new file mode 100644 index 00000000..3e61084c Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_cancel.gif differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_changerank.png b/templates/tibiacom/images/global/buttons/sbutton_changerank.png new file mode 100644 index 00000000..75680b3a Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_changerank.png differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_createguild.png b/templates/tibiacom/images/global/buttons/sbutton_createguild.png new file mode 100644 index 00000000..5cf833fd Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_createguild.png differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_iagree.gif b/templates/tibiacom/images/global/buttons/sbutton_iagree.gif new file mode 100644 index 00000000..192b6946 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_iagree.gif differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_inviteplayer.png b/templates/tibiacom/images/global/buttons/sbutton_inviteplayer.png new file mode 100644 index 00000000..51364654 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_inviteplayer.png differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_leaveguild.png b/templates/tibiacom/images/global/buttons/sbutton_leaveguild.png new file mode 100644 index 00000000..f05eafeb Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_leaveguild.png differ diff --git a/templates/tibiacom/images/global/buttons/sbutton_manageguild.png b/templates/tibiacom/images/global/buttons/sbutton_manageguild.png new file mode 100644 index 00000000..769b2f87 Binary files /dev/null and b/templates/tibiacom/images/global/buttons/sbutton_manageguild.png differ diff --git a/templates/tibiacom/index.php b/templates/tibiacom/index.php index 50786706..1a46bd21 100644 --- a/templates/tibiacom/index.php +++ b/templates/tibiacom/index.php @@ -36,13 +36,13 @@ if(isset($config['boxes'])) { if(loginStatus == "false") { document.getElementById('LoginstatusText_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-you-are-not-logged-in.gif')"; - document.getElementById('ButtonText').style.backgroundImage = "url('" + IMAGES + "/buttons/_sbutton_login.gif')"; + document.getElementById('ButtonText').style.backgroundImage = "url('" + IMAGES + "/global/buttons/_sbutton_login.gif')"; document.getElementById('LoginstatusText_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-create-account.gif')"; document.getElementById('LoginstatusText_2_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-create-account.gif')"; document.getElementById('LoginstatusText_2_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-create-account-over.gif')"; } else { document.getElementById('LoginstatusText_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-welcome.gif')"; - document.getElementById('ButtonText').style.backgroundImage = "url('" + IMAGES + "/buttons/_sbutton_myaccount.gif')"; + document.getElementById('ButtonText').style.backgroundImage = "url('" + IMAGES + "/global/buttons/_sbutton_myaccount.gif')"; document.getElementById('LoginstatusText_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-logout.gif')"; document.getElementById('LoginstatusText_2_1').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-logout.gif')"; document.getElementById('LoginstatusText_2_2').style.backgroundImage = "url('" + IMAGES + "/loginbox/loginbox-font-logout-over.gif')"; @@ -214,10 +214,10 @@ if(isset($config['boxes']))
-
-
+
+
+ echo '
'; ?>
@@ -740,18 +740,18 @@ if($logged):
@@ -778,9 +778,9 @@ if($logged): ?>
-
+
+ {{ include('buttons.change_sex.html.twig') }}
-
-
+ {{ include('buttons.delete_character.html.twig') }}