login.php
Upload User: skyfeel
Upload Date: 2014-03-01
Package Size: 3818k
Code Size: 2k
Category:

Windows Develop

Development Platform:

MultiPlatform

  1. <html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>aMule CVS - Web Control Panel</title>
  2. <script language="JavaScript" type="text/javascript">
  3. function breakout_of_frame()
  4. {
  5.   // see http://www.thesitewizard.com/archive/framebreak.shtml
  6.   // for an explanation of this script and how to use it on your
  7.   // own website
  8.   if (top.location != location) {
  9.     top.location.href = document.location.href ;
  10.   }
  11. }
  12. function login_init()
  13. {
  14. breakout_of_frame();
  15. document.login.pass.focus();
  16. }
  17. </script>
  18. <style type="text/css">
  19. .ibutton
  20. {
  21. cursor:hand;
  22. position:relative;
  23. top:5;
  24. font-weight: bold;
  25. font-family: Tahoma, Verdana, Arial;
  26. font-size: 11px;
  27. }
  28. </style></head>
  29. <body onload="login_init();" alink="white" bgcolor="#cccccc" link="white" text="white" vlink="white">
  30. <table align="center" border="0" cellpadding="4" cellspacing="0" height="100%" width="100%">
  31. <tbody><tr><td align="center" valign="middle">
  32. <table align="center" border="0" cellpadding="4" cellspacing="0">
  33. <tbody><tr>
  34. <td align="center" bgcolor="#0066cc">
  35. <br>
  36. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.amule.org/" target="_blank"><img src="phpamule.png"></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  37. <p><font style="font-size: 10pt;" face="Tahoma"><b>Web Control Panel</b><br>Login</font></p>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td align="center" bgcolor="#3399ff" valign="top">
  42. <form action="" method="post" name="login">
  43. <font style="font-size: 10pt;" face="Tahoma">&nbsp;<br>Enter your password here<br><br>
  44. <input name="pass" size="37" style="border: 1px none black;" value="" type="password">
  45. <br><br><input value="Login Now" type="submit"></font>
  46. </form>
  47. <br>
  48. <?php
  49. if ($_SESSION["login_error"] != "") {
  50. echo "<font color=blue size=+2>";
  51. echo $_SESSION["login_error"];
  52. echo "</font>";
  53. }
  54. ?>
  55. </td>
  56. </tr>
  57. </tbody></table>
  58. </td>
  59. </tr>
  60. </tbody></table>
  61. </body></html>