| <?php | 
| include_once "/Account/User.php"; | 
| include_once "/Common/Logging.php"; | 
| include_once "/Common/CommFunc.php"; | 
| include_once "/language/lang.php"; | 
|   | 
| $Permission = \User\Permission::P_CrossBattleChampionSet; | 
| $channel = $_SESSION['spid']; | 
| $user = new \User\User($_SESSION['UserAccount']); | 
| if (!$user->HavePermission($Permission)) { | 
|     exit; | 
| } | 
|   | 
| ?> | 
|   | 
| <!DOCTYPE html> | 
| <html> | 
|   | 
| <head> | 
|     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | 
|     <title><?php echo \Lang\gettext("跨服战场冠军赛"); ?></title> | 
|     <link rel="gettext" type="application/x-po" href="../language/<?php echo \Lang\getLang(); ?>/LC_MESSAGES/<?php echo \Lang\getjspodomain(); ?>.po" /> | 
| </head> | 
|   | 
| <body> | 
|   | 
|     <form id="CrossActServerIDChange" name="CrossActServerIDChange" action="/Common/GMCmdProcess.php" method="post"> | 
|         <center> | 
|             <p><?php echo \Lang\gettext("跨服战场冠军赛"); ?></P> | 
|         </center> | 
|         <hr> | 
|   | 
|         <?php | 
|         if ($user->NeedCheckKey()) { | 
|             echo "<dd class=\"def_dd\">"; | 
|             echo \Lang\gettext("授权码(key)") . ":"; | 
|             echo "<input type=\"text\" name=\"key\" id=\"key\" />"; | 
|             echo "<p class=\"clear\"></p>"; | 
|             echo "</dd>"; | 
|         } else { | 
|             echo "<input type=\"hidden\" name=\"key\" id=\"key\" />"; | 
|         } | 
|         ?> | 
|   | 
|         <input type="hidden" name="Permission" value="<?php echo $Permission; ?>" /> | 
|         <input type="hidden" name="pack_type" value="GMT_CrossBattleChampionSet" /> | 
|         <dd class="submit_dd"> | 
|             <input type="submit" name="query" value="<?php echo \Lang\gettext("查询活动"); ?>" onclick="" /> | 
|         </dd> | 
|         <hr> | 
|     </form> | 
|   | 
|     <script type='text/javascript' src='/language/gettext.js'></script> | 
| </body> | 
|   | 
| </html> |