index.html 864 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Cache-Control" content="no-cache" />
  6. <script src="/luci-static/resources/xhr.js"></script>
  7. <script type="text/javascript">//<![CDATA[
  8. function entry()
  9. {
  10. XHR.get('/cgi-bin/luci/rpc/gettheme',
  11. null,
  12. function(x, resp)
  13. {
  14. if (resp.ret == '0')
  15. {
  16. if (resp.theme == "avalon")
  17. window.location = '/cgi-bin/luci/avalon/page/index';
  18. else
  19. window.location = '/cgi-bin/luci'
  20. }
  21. }
  22. );
  23. }
  24. //]]></script>
  25. </head>
  26. <body style="background-color: white" onload="entry()">
  27. <a style="color: black; font-family: arial, helvetica, sans-serif;" href="/cgi-bin/luci">LuCI - Lua Configuration Interface</a>
  28. </body>
  29. </html>