Advertisement
Guest User

Untitled

a guest
Mar 19th, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title><? echo dict_translate("Login"); ?></title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta http-equiv="Pragma" content="no-cache">
  7. <meta http-equiv="Expires" content="0">
  8. <meta http-equiv="Cache-Control" content="no-cache">
  9. <link rel="shortcut icon" href="images/favicon.ico">
  10. <link type="text/css" href="/150716.1130/css/style.css" rel="stylesheet"/>
  11. <script type="text/javascript" src="/150716.1130/js/jquery.js"></script>
  12. <script type="text/javascript" language="javascript">
  13. //<!--
  14. $(document).ready(function() {
  15. $("#username").focus();
  16. });
  17. //-->
  18. </script>
  19.  
  20. <style type="text/css">
  21. #loginform {
  22. text-align: center;
  23. }
  24.  
  25. #loginform table {
  26. margin: 0px auto;
  27. text-align: left;
  28. }
  29.  
  30. #loginform table tr {
  31. }
  32.  
  33. table.loginsubtable {
  34. margin: 80px auto;
  35. }
  36.  
  37. table.loginsubtable td {
  38. padding: 0 30px 0px 30px;
  39. }
  40.  
  41. table.loginsubtable img {
  42. border: 0px;
  43. }
  44.  
  45. .loginsep {
  46. border-left: 1px solid #dbdbdb;
  47. }
  48.  
  49. .loginsep table td {
  50. margin: 4px 2px 0px 2px;
  51. white-space: nowrap;
  52. padding: 5px 2px 0px 2px;
  53. }
  54.  
  55. .loginsep label {
  56. text-align: right;
  57. color: white;
  58. font-weight: normal;
  59. white-space: nowrap;
  60. }
  61.  
  62. .loginsep table td.submit {
  63. text-align: right;
  64. }
  65.  
  66. #submit {
  67. text-align: center;
  68. }
  69.  
  70. .error {
  71. color: #f4324f;
  72. font-weight: normal;
  73. white-space: nowrap;
  74. }
  75.  
  76. .license {
  77. white-space: normal;
  78. text-align: justify;
  79. line-height: 1.8em;
  80. width: 250px;
  81. }
  82.  
  83. .error {
  84. text-align: left;
  85. white-space: normal;
  86. }
  87.  
  88. </style>
  89.  
  90. </head>
  91. <? flush(); ?>
  92. <body>
  93. <table border="0" cellpadding="0" cellspacing="0" align="center" class="loginsubtable">
  94. <form enctype="multipart/form-data" id="loginform" method="post" action="<?echo $PHP_SELF;?>">
  95. <tr>
  96. <td valign="top" style="padding-top: 38px"><img src="<? if (isBcm()); ?>/150716.1130/images/tough-switch-pro-logo.png<? else; ?>/150716.1130/images/tough-switch-poe-logo.png<? endif; ?>"></td>
  97. <td class="loginsep" style="padding-right: 0">
  98. <input type="hidden" name="uri" id="uri" value=" <? echo $uri; ?>" />
  99. <table border="0" cellpadding="0" cellspacing="0" class="logintable" align="center">
  100. <tr>
  101. <td colspan="2" align="center">
  102. <div id="errmsg" class="error">
  103. <? if (isset($error_msg) && (strlen($error_msg) > 0)) { echo $error_msg; } ?>
  104. </div>
  105. </td>
  106. </tr>
  107. <tr>
  108. <td colspan="2">&nbsp;</td>
  109. </tr>
  110. <tr>
  111. <td><label for="username"><? echo dict_translate("Username:"); ?></label></td>
  112. <td align="right"><input style="width: 145px" type="text" name="username" id="username" /></td>
  113. </tr>
  114. <tr>
  115. <td><label for="password"><? echo dict_translate("Password:"); ?></label></td>
  116. <td align="right"><input style="width: 145px" type="password" name="password" id="password" maxlength="8"/></td>
  117. </tr>
  118. <tr>
  119. <td colspan="2" valign="top" height="30" align="right"><input type="submit" value="<? echo dict_translate("Login"); ?>" /></td>
  120. </tr>
  121. </table>
  122. </td>
  123. </tr>
  124. </form>
  125. </table>
  126. </body>
  127. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement