index.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>x_organization_assemble_surface_authentication</title>
  6. <script src="./jquery.js"></script>
  7. <script src="./common.js"></script>
  8. <script src="./debug.js"></script>
  9. <script src="authentication.js"></script>
  10. <script src="bind.js"></script>
  11. <script>
  12. $(document).ready(function() {
  13. authentication_who();
  14. });
  15. </script>
  16. </head>
  17. <body style="margin: 0; font-size: 1.0em; font-family: Microsoft Yahei">
  18. <div id="container" style="width: 1000px; margin: 0 auto;">
  19. <div id="header"
  20. style="background-color: #4682B4; clear: both; text-align: center;">
  21. x_organization_assemble_surface_authentication</div>
  22. <div id="menu"
  23. style="background-color: #B0E0E6; height: 950px; width: 280px; float: left;">
  24. <ul>
  25. <li>Authentication
  26. <ul>
  27. <li><a onclick="authentication_who()" href="#">Who</a></li>
  28. <li><a onclick="authentication_login_init()" href="#">Login</a></li>
  29. <li><a onclick="authentication_logout()" href="#">Logout</a>
  30. </li>
  31. </ul>
  32. </li>
  33. <li>Bind
  34. <ul>
  35. <li><a onclick="bind_list()" href="#">List</a></li>
  36. </ul>
  37. </li>
  38. <li>Debug
  39. <ul>
  40. <li><a onclick="debug_init()" href="#">Debug</a></li>
  41. </ul>
  42. </li>
  43. </ul>
  44. </div>
  45. <div style="float: left; width: 720px;">
  46. <div id="content" style="width: 100%;">&nbsp;</div>
  47. <div id="result"
  48. style="width: 100%; white-space: pre; font-size: 10px; word-break: break-all; word-wrap: break-word;">
  49. &nbsp;</div>
  50. </div>
  51. <div id="footer"
  52. style="background-color: #4682B4; clear: both; text-align: center; display: none">
  53. Copyright © x</div>
  54. </div>
  55. </body>
  56. </html>