Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 登陆框的样式究竟是什么来控制的

[复制链接]
理解万岁 发表于 2007-7-19 23:39:52 | 显示全部楼层
batch.panel.php 里面的全部代码
回复

使用道具 举报

 楼主| mxfire 发表于 2007-7-19 23:45:19 | 显示全部楼层
  1. <?php

  2. /*
  3.         [SupeSite/X-Space] (C)2001-2006 Comsenz Inc.
  4.         用户动态面板

  5.         $RCSfile: batch.panel.php,v $
  6.         $Revision: 1.15 $
  7.         $Date: 2007/04/13 14:33:35 $
  8. */

  9. include_once('./include/main.inc.php');
  10. include_once(S_ROOT.'./language/batch.lang.php');

  11. getcookie();

  12. $uid = $_SGLOBAL['supe_uid'];

  13. if(!empty($uid)) {
  14.         $uid_url = url_remake(geturl("uid/$uid"));
  15.         print <<<END
  16.         document.write('<h3>$blang[my_menu]</h3>');
  17.         document.write('<ul class="msgtitlelist">');
  18.         document.write('<li><a href="$uid_url" target="_blank">$blang[my_space]</a> &nbsp; <a href="$siteurl/spacecp.php?docp=me" target="_blank">$blang[space_management]</a></li>');
  19.         document.write('<li><a href="$bbsurl/pm.php" target="_blank">$blang[my_pm]</a> &nbsp; <a href="$bbsurl/" target="_blank">$blang[forum_visit]</a></li>');
  20.         document.write('<li><a href="$siteurl/?action-site-type-panel" target="_self">$blang[my_quickly_face]</a> &nbsp; <a href="$siteurl/batch.login.php?action=logout" target="_self">$blang[safe_logout]</a></li>');
  21.         document.write('</ul>');
  22. END;
  23. } else {
  24.         print <<<END
  25.         document.write('<form id="login" method="post" name="login" action="$siteurl/batch.login.php?action=login" target="_self">');
  26.         document.write('<fieldset id="userlogin">');
  27.         document.write('<legend>$blang[user_login]</legend>');
  28.         document.write('<p><label for="username">$blang[username]</label><input type="text" name="username" id="username" /></p>');
  29.         document.write('<p><label for="userpass">$blang[password]</label><input type="password" name="password" id="userpass" /></p>');
  30.         document.write('<p><button type="submit" name="loginsubmit" id="dologin" value="true">$blang[login]</button></p> <a href="$bbsurl/register.php?referer=$siteurl/index.php" target="_blank">$blang[registration]</a> <a href="$bbsurl/member.php?action=lostpasswd" target="_blank">$blang[find_passwords]</a></p>');
  31.         document.write('</fieldset>');
  32.         document.write('</form>');
  33. END;
  34. }

  35. ?>
复制代码


这个俺也是默认的
回复

使用道具 举报

理解万岁 发表于 2007-7-19 23:48:57 | 显示全部楼层
是啊看到里面包含的2个文件了没,继续找啊
include_once('./include/main.inc.php');
include_once(S_ROOT.'./language/batch.lang.php');
回复

使用道具 举报

理解万岁 发表于 2007-7-19 23:50:22 | 显示全部楼层
其实说实话我也看得头挺大的,,里面代码太多,要是CSS+DIV的好说,这里面调用代码太多。。。我看的不是很懂
回复

使用道具 举报

 楼主| mxfire 发表于 2007-7-19 23:58:15 | 显示全部楼层
  1. <?php @Zend;
  2. 6101;
  3. print <<<EOM
  4. <html>
  5. <head>
  6. <title>SupeSite/X-Space - Zend Optimizer not Installed</title>
  7. <style>
  8. body, table, input        { font-family: Verdana, Tahoma; color: #666666; font-size: 12px }
  9. </style>
  10. </head>
  11. <body bgcolor="#FFFFFF">
  12. <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%" align="center">
  13. <tr><td valign="middle" align="center">
  14. <table cellpadding="0" cellspacing="0" border="0" align="center">
  15.   <tr align="center" valign="middle">
  16.     <td bgcolor="#000000">
  17.     <table cellpadding="10" cellspacing="1" border="0" width="100%" height="100%" align="center">
  18.     <tr>
  19.       <td valign="middle" bgcolor="#EBEBEB">
  20.         <br><span style="font-size: 20px; font-weight: bold">Attention: Zend Optimizer not Installed</span>
  21.         <br><br><br>In order to run this software, please install the latest version of freely available <a href="http://www.zend.com/store/products/zend-optimizer.php" target="_blank">Zend Optimizer</a>.
  22.         <br><br>&#x60A8;&#x7684;&#x670D;&#x52A1;&#x5668;&#x5C1A;&#x672A;&#x6B63;&#x786E;&#x5B89;&#x88C5;&#x8FD0;&#x884C;&#x672C;&#x8F6F;&#x4EF6;&#x6240;&#x9700;&#x7684; <a href="http://www.zend.com/store/products/zend-optimizer.php" target="_blank">Zend Optimizer</a> &#x8F6F;&#x4EF6;&#xFF0C;&#x8BF7;&#x4E0E;&#x7A7A;&#x95F4;&#x63D0;&#x4F9B;&#x5546;&#x8054;&#x7CFB;&#x3002;
  23.         <br><br>
  24.       </td>
  25.     </tr>
  26.     </table>
  27.     </td>
  28.   </tr>
  29. </table>
  30. </td></td></table>
  31. </body>
  32. </html>
  33. EOM;
  34. exit();

  35. print "<html><body>\n";
  36. print "<a href="http://www.zend.com/store/products/zend-safeguard-suite.php"><img border="0" src="http://www.zend.com/images/store/safeguard_icon_nover_64.jpg" align="right"></a>\n";
  37. print "<center><h1>Zend Optimizer not installed</h1></center>";
  38. print "<p>This file was encoded by the <a href="http://www.zend.com/store/products/zend-encoder.php">Zend Encoder</a> / <a href="http://www.zend.com/store/products/zend-safeguard-suite.php">Zend SafeGuard Suite</a></p>\n";
  39. print "<p>In order to run it, please install the freely available <a href="http://www.zend.com/store/products/zend-optimizer.php">Zend Optimizer</a>, version 2.1.0 or later.</p>\n";
  40. print "<h2>What is the Zend Optimizer?</h2>
  41. ";
  42. print <<<EOM
  43. <p>The Zend Optimizer is one of the most popular PHP plugins for performance-improvent, and has been freely available since the early days of PHP 4.  It improves performance by taking PHP's intermediate code through multiple Optimization Passes, which replace inefficient code patterns with efficient code blocks.  The replacement code blocks perform exactly the same operations as the original code, only faster.</p>
  44. <p>In addition to performance-improvement, the Zend Optimizer also enables PHP to transparently load files encoded by the Zend Encoder or Zend SafeGuard Suite.</p>
  45. <p>The Zend Optimizer is a freely-available product from <a href="http://www.zend.com">Zend Technologies</a>.  Zend Technologies is the company that develops the scripting engine of PHP, also known as the <a href="http://www.zend.com/store/products/zend-engine.php">Zend Engine</a>.</p>
  46. EOM;
  47. print "</body></html>\n";
  48. exit(1);
  49. ?>

  50. 20020623011369117404x
  51. 2 \k]U$hW&#1419;G,dvX$!M}$]KO~I})]
  52. RtS BqY$&#1746;qec1I!@ =3wg;
  53. 4&#1881;3g33kNQ%/{ht}5[&#773;AVZu?]oWBIR{.k/.~P/~+s~謯^}|m(Uo|:]7&&#1727;=Ok&#698;4ht6MjA5]b)_qH)&#1993;檱?qU&#1283;*WL
  54. {*%&#319;$1Rm~S&#1456;JMA
  55. Hbu b ,`:[L6@|4KF        nBZNQuwo(:Edm(wN";NsroqM^1U/&#1752;+1Wk)?sVB9ObcP.]5,9_?Hz_7"6 d7'd6o ^,w,64-6ī0/duS&#796;;<
  56. -        ?VWWVFPΗ{
  57. yk&#540;
  58. u/0
  59. +suDy.N{@RΗ.=&#2003;x"J,s &#681;&#1494;&#1552;[H+_pNn6-)Y;rV[&#821;&#1602;Q:cxz591@f&#1731;{boo4Pv%O|=i7sMN1q
  60. &#1851;j
  61. jN#DDn蛶Ju3[>=aE        e\ZYn\tQ"
  62. Tdp)bke#(7$b&#1761;&#346;5'wW*ypq@xoY?;眔 s`T5t(kXyPP,&#1712;PC-&sQtI&#1029;S5&<GL        /&#287;m)i`
  63. !/?Ushb\%s
  64. wG8G|&#1467;&#1623;dtGqA=ZF\oj@ {&#15043;}6h!D
  65. [HM*rЧtqO*^4$/-UI*
  66. *QTv;SqnX>n^&#433;E$4[gT
  67. @5SLI=v6A&aE/tV*oofHt^7 <% `gK&#1397;I        6pvV1a&#378;n)pN&#264;\sV y!n&#1556;ypPH&#850;8CgRxVgZ_xrV7[`'/ci<&#1959;W        bb'%&#310;|wq=pI8%W8uy&#907;6)^tl&#1631;%fG}42jMp06{wA1<>1gc(1Q&#418;Ν`hw+vUc}h&#48013;        D&#1168;q&#1381;7lt!tE$@&#1693;v@&#1975;2Cqdy|zW fy@ J+ca(&#691;1W_iy~&#1334;/n  {me/.--@*gR&#658;]L#M\2sb,H3PvX'8}V0bAJJaU{<&#488;&#674; sb$&A%f\2&#798;k&#800; Y&#365;Umn&#1576;]BSzr_?ju&#1204;~:tKY?&#295;,'r>Qzh
  68. K#rnFd:3rILFzkL~EZf(q > -e %%C&#294;Q9@1 8|H pcG6:F#-3`K&Aacute;j&#903;:4u&#1143;(RJWzV=&#391;SN*Pauv,&#1528;)(m2|/F_7<}Vgbj_bb3GL <o)6y^m=1<ZLoPh+m.q7:TV\oP#BU #v/(&#597;&#397;6V@|&#374;e7?4N946P@r>_ Ezsu        f5TSu8@-
  69. d*6J{vCKFi&#1691;Rqsn@X~PzFrKZ&iuml;+K &#1826;* td(P?AA@-°Yāt9i>7N1->+E#yz}Z{N&#63291;Gi0,3]8UZ'@:aC)K46+QH"&#53597;NO+|g`]>&#1257;%\f)CN9W&#411;8/LgUkm7va}&#327;57vEz*AOH_n)&#1230;sR^kSa:f*$JLY }tV葓NYs\2lN A${/&#1566;Pj4*qb3`"&Yh:2I\6
  70. =12Pbs('s&_3] |5SLPP 6lNkQ Y "$&#1838;@1FI&5&#1974;6&#699;ew*G]iT5*^=3M=++qm
  71. BG,,<N@;HHrbd,F:( N2U5U&#1353;uQ&#1353;M`Eml&#1908;1[\XOSb"MocH`_N"IStGad|&#1732;i&#1437;y%9ARmmN$;[kh$Zw&%&#49470;&#1163;"f2< \7< i&#287;v<k@',r<ZgМ 6@OS~fvI$7
  72. ovJT@[
  73. >^"f^a'KDq6gow&#621;i,4r4_榶<|l&&$ko/.,H4}&#18170;W)
  74. ? K{ow,&v%+kИP!i?=_        
  75. hA3L         O,i12;>x v&#1944;k _Bj,^JmNfd},Z+<T6Im'%a}F<euE7sk0O=Q:PEdVy8?H7yv}&#1442;s5WsW&#1273;sO+5]
  76. &#262;JHIaM0)]5Jhz{a]]@&#1982;&#1641;kB*%7H~UR`'zJиQqmj&#1386;q~蜨4#O]+dK[K
  77. S$S\秸'tXs        &#825;U/3/-&#510;O-b&#1875;/%蹽p%5&#1210;ze:^hp*{w&not;%YI]sz&#1842;<_4wI6O&#788;&#1159;muSR>fi~-nU?R?
复制代码


这个main.inc.php就更看不懂了,打开全是乱码
回复

使用道具 举报

 楼主| mxfire 发表于 2007-7-20 00:00:00 | 显示全部楼层
batch.lang.php好像是语言文件,应该没什么关系,代码太常,不贴了
回复

使用道具 举报

理解万岁 发表于 2007-7-20 00:01:04 | 显示全部楼层
是啊我也看不明白啊,,,汗,不过总觉得你的CSS文件不全
回复

使用道具 举报

 楼主| mxfire 发表于 2007-7-20 00:03:58 | 显示全部楼层
应该是css文件不全,可是我在default里面找相关的代码的时候总是找不到,汗死,一开始把用户相关的userpanel那整段 block 和topblock整段 后来以及 content段都加上去,还是不行,才崩溃的
回复

使用道具 举报

 楼主| mxfire 发表于 2007-7-20 00:04:27 | 显示全部楼层
官方哪位大大也不出来说个话,究竟是哪段代码控制的哦!
回复

使用道具 举报

理解万岁 发表于 2007-7-20 00:05:42 | 显示全部楼层
我也来研究研究吧。。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-9-28 14:12 , Processed in 0.109969 second(s), 15 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表